Skip to content

Commit

Permalink
v1.6.1 Hotfix: Soundtracks didn't play in JAR
Browse files Browse the repository at this point in the history
And now they do again! Apparently JARs like to have case sensitivity...

<bug, naming
  • Loading branch information
mpsijm committed Oct 31, 2015
1 parent 924554a commit 3386019
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>nl.tudelft.ti2206.group9</groupId>
<artifactId>ti2206-sem-group-9</artifactId>
<version>1.6</version>
<version>1.6.1</version>
<repositories>
<repository>
<id>maven-central-repo</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class AnimalsSoundtrack extends AbstractSoundtrack {
/** Price of the Animals soundtrack in shop. */
private static final int PRICE = 250;
/** Path to be used for soundtrack 'Animals'. */
private static final String PATH_ANIMALS = "soundtrack_animals";
private static final String PATH_ANIMALS = "soundtrack_Animals";

/** Constructor for the animals soundtrack. */
public AnimalsSoundtrack() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class DuckTalesSoundtrack extends AbstractSoundtrack {
/** Price of the Duck Tales soundtrack in the shop. */
private static final int PRICE = 200;
/** Path to be used for soundtrack 'Duck Tales'. */
private static final String PATH_DUCKTALES = "soundtrack_ducktales";
private static final String PATH_DUCKTALES = "soundtrack_Ducktales";

/** Constructor for the Duck Tales soundtrack. */
public DuckTalesSoundtrack() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class MarioSoundtrack extends AbstractSoundtrack {
/** Price of the Mario soundtrack in the shop. */
private static final int PRICE = 50;
/** Path to be used for the 'Mario' soundtrack. */
private static final String PATH_MARIO = "soundtrack_mario";
private static final String PATH_MARIO = "soundtrack_Mario";

/** Constructor for the Mario soundtrack. */
public MarioSoundtrack() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class NyanCatSoundtrack extends AbstractSoundtrack {
/** Price of the Nyan Cat soundtrack in the shop. */
private static final int PRICE = 100;
/** Path to be used for the 'Nyan Cat' soundtrack. */
private static final String PATH_NYANCAT = "soundtrack_nyancat";
private static final String PATH_NYANCAT = "soundtrack_Nyancat";

/** Constructor for the Nyan Cat soundtrack. */
public NyanCatSoundtrack() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ShakeItOffSoundtrack extends AbstractSoundtrack {
/** Price of the Shake It Off soundtrack in the shop. */
private static final int PRICE = 150;
/** Path to be used for the 'Shake It Off' soundtrack. */
private static final String PATH_SHAKEITOFF = "soundtrack_shakeitoff";
private static final String PATH_SHAKEITOFF = "soundtrack_Shakeitoff";

/** Constructor for the Shake It Off soundtrack. */
public ShakeItOffSoundtrack() {
Expand Down

0 comments on commit 3386019

Please sign in to comment.