Changed powerlevel display setting to disabled by default.

Because scoreboards are being cached by Minecraft in scoreboard.dat it
is no user friendly to enabled this by default. Users will have to
manually delete this file in order to actually disable this.
Described in #1105
This commit is contained in:
TfT_02 2013-05-18 11:12:18 +02:00
parent 7fde04851d
commit ce4295289a
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ public class Config extends AutoUpdateConfigLoader {
public boolean getSkillScoreboardEnabled() { return config.getBoolean("Scoreboards.Skillname.Use", true); }
public int getSkillScoreboardTime() { return config.getInt("Scoreboards.Skillname.Display_Time", 10); }
public boolean getPowerLevelsEnabled() { return config.getBoolean("Scoreboards.Power_Level.Use", true); }
public boolean getPowerLevelsEnabled() { return config.getBoolean("Scoreboards.Power_Level.Use", false); }
/* Database Purging */
public int getPurgeInterval() { return config.getInt("Database_Purging.Purge_Interval", -1); }

View File

@ -58,7 +58,7 @@ Scoreboards:
Display_Time: 10
# Should mcMMO display power levels on scoreboards?
Power_Level:
Use: true
Use: false
Mob_Healthbar:
# Default display for mob health bars - HEARTS, BAR, or DISABLED