diff options
| author | bowser0000 <bowser0000@gmail.com> | 2021-03-24 14:59:29 -0400 |
|---|---|---|
| committer | bowser0000 <bowser0000@gmail.com> | 2021-03-24 14:59:29 -0400 |
| commit | e499665f275c324bcbf4c3c78b6ef40c20ba611b (patch) | |
| tree | 8b521054c8f188ae0cf0606b3e3f968b2b512319 /src/main/java/me/Danker/handlers | |
| parent | 68a5e182ae5ad4760a2d1cd3974a6bfe4090c625 (diff) | |
| download | SkyblockMod-e499665f275c324bcbf4c3c78b6ef40c20ba611b.tar.gz SkyblockMod-e499665f275c324bcbf4c3c78b6ef40c20ba611b.tar.bz2 SkyblockMod-e499665f275c324bcbf4c3c78b6ef40c20ba611b.zip | |
Add dungeon and blood room custom music
Diffstat (limited to 'src/main/java/me/Danker/handlers')
| -rw-r--r-- | src/main/java/me/Danker/handlers/ConfigHandler.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/me/Danker/handlers/ConfigHandler.java b/src/main/java/me/Danker/handlers/ConfigHandler.java index 8a95ae5..6d474d4 100644 --- a/src/main/java/me/Danker/handlers/ConfigHandler.java +++ b/src/main/java/me/Danker/handlers/ConfigHandler.java @@ -274,7 +274,12 @@ public class ConfigHandler { ToggleCommand.hideTooltipsInExperimentAddonsToggled = initBoolean("toggles", "HideTooltipsInExperimentAddons", false); // Custom Music ToggleCommand.dungeonBossMusic = initBoolean("toggles", "DungeonBossMusic", false); + ToggleCommand.bloodRoomMusic = initBoolean("toggles", "BloodRoomMusic", false); + ToggleCommand.dungeonMusic = initBoolean("toggles", "DungeonMusic", false); + // Music Volume CustomMusic.dungeonbossDecibels = (float) initInt("music", "DungeonBossDecibels", -20); + CustomMusic.bloodroomDecibels = (float) initInt("music", "BloodRoomDecibels", -20); + CustomMusic.dungeonDecibels = (float) initInt("music", "DungeonDecibels", -20); // API if (!hasKey("api", "APIKey")) writeStringConfig("api", "APIKey", ""); |
