Fixed audio file names
This commit is contained in:
parent
41476806f4
commit
b2c948fe84
2
pom.xml
2
pom.xml
@ -8,7 +8,7 @@
|
|||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>DroidQuest</name>
|
<name>DroidQuest</name>
|
||||||
<url>https://github.com/ThomasFooteDQ/DroidQuest</url>
|
<url>https://github.com/cromerc/DroidQuest</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
@ -188,8 +188,7 @@ public class RoomDisplay extends JPanel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
level.roomdisplay.useSounds = tempsound;
|
level.roomdisplay.useSounds = tempsound;
|
||||||
level.PlaySound(level.currentViewer.room, Level.TRANSPORTSOUND);
|
level.PlaySound(level.currentViewer.room, Level.TRANSPORTSOUND);
|
||||||
|
|
||||||
|
|
||||||
// Handle menu item initialization
|
// Handle menu item initialization
|
||||||
if (level.gameCursor instanceof LabCursor) {
|
if (level.gameCursor instanceof LabCursor) {
|
||||||
|
@ -52,9 +52,9 @@ public class Level implements ImageObserver, Serializable {
|
|||||||
public transient static String ATTACHSOUND = "attach.WAV";
|
public transient static String ATTACHSOUND = "attach.WAV";
|
||||||
public transient static String DETATCHSOUND = "detatch.WAV";
|
public transient static String DETATCHSOUND = "detatch.WAV";
|
||||||
public transient static String PICKUPSOUND = "pickup2.WAV";
|
public transient static String PICKUPSOUND = "pickup2.WAV";
|
||||||
public transient static String DROPSOUND = "drop2.WAV";
|
public transient static String DROPSOUND = "drop.WAV";
|
||||||
public transient static String BEEPSOUND = "beep2.WAV";
|
public transient static String BEEPSOUND = "beep.WAV";
|
||||||
public transient static String BUMPSOUND = "bump2.WAV";
|
public transient static String BUMPSOUND = "bump.WAV";
|
||||||
public transient static String CHARGESOUND = "charge.WAV";
|
public transient static String CHARGESOUND = "charge.WAV";
|
||||||
public transient static String DISCHARGESOUND = "discharge.WAV";
|
public transient static String DISCHARGESOUND = "discharge.WAV";
|
||||||
public transient static String BURNSOUND = "burn.WAV";
|
public transient static String BURNSOUND = "burn.WAV";
|
||||||
@ -68,9 +68,7 @@ public class Level implements ImageObserver, Serializable {
|
|||||||
BURNSOUND, ENDMUSICSOUND, STARTMUSICSOUND,
|
BURNSOUND, ENDMUSICSOUND, STARTMUSICSOUND,
|
||||||
TELEPORTSOUND, TRANSPORTSOUND
|
TELEPORTSOUND, TRANSPORTSOUND
|
||||||
};
|
};
|
||||||
/* Cromer: Disable cheatmode */
|
|
||||||
public transient boolean cheatmode = false;
|
public transient boolean cheatmode = false;
|
||||||
/* Cromer */
|
|
||||||
|
|
||||||
Level() {
|
Level() {
|
||||||
Item.level = this;
|
Item.level = this;
|
||||||
|
Loading…
Reference in New Issue
Block a user