aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/features
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2022-04-20 23:42:22 -0400
committerbowser0000 <bowser0000@gmail.com>2022-04-20 23:42:22 -0400
commita731568267903caf47a857bc3780de85daa63739 (patch)
tree4aa6251d1d7a5d2f01244f599195af0aa95122eb /src/main/java/me/Danker/features
parentf214832fb6f315d59d876267f71e9e9f0a6082fd (diff)
downloadSkyblockMod-a731568267903caf47a857bc3780de85daa63739.tar.gz
SkyblockMod-a731568267903caf47a857bc3780de85daa63739.tar.bz2
SkyblockMod-a731568267903caf47a857bc3780de85daa63739.zip
Fix crimson isle custom music
Diffstat (limited to 'src/main/java/me/Danker/features')
-rw-r--r--src/main/java/me/Danker/features/CustomMusic.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/me/Danker/features/CustomMusic.java b/src/main/java/me/Danker/features/CustomMusic.java
index 5153f91..a31e40a 100644
--- a/src/main/java/me/Danker/features/CustomMusic.java
+++ b/src/main/java/me/Danker/features/CustomMusic.java
@@ -51,8 +51,8 @@ public class CustomMusic {
public static int crystalHollowsVolume;
public static Song spidersDen;
public static int spidersDenVolume;
- public static Song blazingFortress;
- public static int blazingFortressVolume;
+ public static Song crimsonIsle;
+ public static int crimsonIsleVolume;
public static Song end;
public static int endVolume;
public static Song park;
@@ -119,8 +119,8 @@ public class CustomMusic {
case "Spider's Den":
if (ToggleCommand.spidersDenMusic) spidersDen.start();
break;
- case "Blazing Fortress":
- if (ToggleCommand.blazingFortressMusic) blazingFortress.start();
+ case "Crimson Isle":
+ if (ToggleCommand.crimsonIsleMusic) crimsonIsle.start();
break;
case "The End":
if (ToggleCommand.endMusic) end.start();
@@ -184,7 +184,7 @@ public class CustomMusic {
dwarvenMines = new Song(directory, "dwarvenmines", dwarvenMinesVolume);
crystalHollows = new Song(directory, "crystalhollows", crystalHollowsVolume);
spidersDen = new Song(directory, "spidersden", spidersDenVolume);
- blazingFortress = new Song(directory, "blazingfortress", blazingFortressVolume);
+ crimsonIsle = new Song(directory, "crimsonisle", crimsonIsleVolume);
end = new Song(directory, "end", endVolume);
park = new Song(directory, "park", parkVolume);
}
@@ -202,7 +202,7 @@ public class CustomMusic {
if (dwarvenMines != null) dwarvenMines.stop();
if (crystalHollows != null) crystalHollows.stop();
if (spidersDen != null) spidersDen.stop();
- if (blazingFortress != null) blazingFortress.stop();
+ if (crimsonIsle != null) crimsonIsle.stop();
if (end != null) end.stop();
if (park != null) park.stop();
}