Kraken sounds can now be set to either player-only or global (default).

This commit is contained in:
GJ
2013-05-03 07:48:50 -04:00
parent 499713c8e7
commit 09abab1b5d
4 changed files with 18 additions and 1 deletions

View File

@ -283,6 +283,7 @@ public class AdvancedConfig extends AutoUpdateConfigLoader {
/* KRAKEN STUFF */
public boolean getKrakenEnabled() { return config.getBoolean("Kraken.Enabled", true); }
public boolean getKrakenGlobalSoundsEnabled() { return config.getBoolean("Kraken.Global_Sounds", true); }
public int getKrakenTriesBeforeRelease() { return config.getInt("Kraken.Tries_Before_Release", 50); }
public int getKrakenHealth() { return config.getInt("Kraken.Health", 50); }
public String getKrakenName() { return config.getString("Kraken.Name", "The Kraken"); }