Added an option to turn off fishing exploit detection as a band-aid fix until the config update is done

This commit is contained in:
nossr50
2019-03-20 07:03:42 -07:00
parent 14f900aa83
commit dece43429d
7 changed files with 49 additions and 24 deletions

View File

@ -144,6 +144,7 @@ public class ExperienceConfig extends AutoUpdateConfigLoader {
/* EXPLOIT TOGGLES */
public boolean isEndermanEndermiteFarmingPrevented() { return config.getBoolean("ExploitFix.EndermanEndermiteFarms", true); }
public boolean isFishingExploitingPrevented() { return config.getBoolean("ExploitFix.Fishing", true); }
/* Curve settings */
public FormulaType getFormulaType() { return FormulaType.getFormulaType(config.getString("Experience_Formula.Curve")); }
public boolean getCumulativeCurveEnabled() { return config.getBoolean("Experience_Formula.Cumulative_Curve", false); }