Shuffle floor colors each round, keep eliminated players out of spectator mode, add optional match music
Build / build (push) Successful in 1m17s
Build / build (push) Successful in 1m17s
This commit is contained in:
@@ -93,6 +93,22 @@ public class ConfigManager {
|
||||
return config.getInt("performance.floor-blocks-per-tick", 200);
|
||||
}
|
||||
|
||||
public boolean isShuffleFloorEachRound() {
|
||||
return config.getBoolean("floor.shuffle-each-round", true);
|
||||
}
|
||||
|
||||
public boolean isMusicEnabled() {
|
||||
return config.getBoolean("music.enabled", false);
|
||||
}
|
||||
|
||||
public String getMusicTrack() {
|
||||
return config.getString("music.track", "MUSIC_DISC_PIGSTEP");
|
||||
}
|
||||
|
||||
public float getMusicVolume() {
|
||||
return (float) config.getDouble("music.volume", 1.0);
|
||||
}
|
||||
|
||||
public boolean isPlaceholderApiEnabled() {
|
||||
return config.getBoolean("integrations.placeholderapi", true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user