mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-27 19:24:44 +02:00
Added config value to enable/disable power level display w/ Spout
This commit is contained in:
@ -132,7 +132,8 @@ public class LoadProperties extends ConfigLoader{
|
||||
* SPOUT SETTINGS
|
||||
*/
|
||||
|
||||
public static Boolean spoutEnabled;
|
||||
public static boolean spoutEnabled;
|
||||
public static boolean showPowerLevel;
|
||||
|
||||
/* Spout Party HUD */
|
||||
public static Boolean showDisplayName, showFaces, partybar;
|
||||
@ -213,6 +214,8 @@ public class LoadProperties extends ConfigLoader{
|
||||
showDisplayName = config.getBoolean("Spout.Party.HUD.Show_Display_Name", false);
|
||||
partybar = config.getBoolean("Spout.Party.HUD.Enabled", true);
|
||||
|
||||
showPowerLevel = config.getBoolean("Spout.HUD.Show_Power_Level", true);
|
||||
|
||||
acrobatics_r = config.getDouble("Spout.HUD.Retro.Colors.Acrobatics.RED", 0.3);
|
||||
acrobatics_g = config.getDouble("Spout.HUD.Retro.Colors.Acrobatics.GREEN", 0.3);
|
||||
acrobatics_b = config.getDouble("Spout.HUD.Retro.Colors.Acrobatics.BLUE", 0.75);
|
||||
|
Reference in New Issue
Block a user