Add option to use scoreboards for power level display, similar to the

Spout titles. This will NOT override any existing plugin that uses the
overhead scoreboard slot.
This commit is contained in:
GJ
2013-05-15 15:13:11 -04:00
parent 48aafa9834
commit aa9eb0868c
6 changed files with 38 additions and 0 deletions

View File

@ -80,6 +80,8 @@ 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); }
/* Database Purging */
public int getPurgeInterval() { return config.getInt("Database_Purging.Purge_Interval", -1); }
public int getOldUsersCutoff() { return config.getInt("Database_Purging.Old_User_Cutoff", 6); }