Adding the option to negate experience earned for Acrobatics or Herbalism while in a minecart to prevent afk leveling.

This commit is contained in:
Glitchfinder
2012-11-07 18:41:18 -08:00
parent b8d37cb223
commit d1f683b8a5
4 changed files with 16 additions and 0 deletions

View File

@ -300,6 +300,10 @@ public class Config extends ConfigLoader {
return disabled;
}
/* AFK Leveling */
public boolean getAcrobaticsAFKDisabled() { return config.getBoolean("Skills.Acrobatics.Prevent_AFK_Leveling", true); }
public boolean getHerbalismAFKDisabled() { return config.getBoolean("Skills.Herbalism.Prevent_AFK_Leveling", true); }
/* Arcane Forging */
public boolean getArcaneForgingDowngradeEnabled() { return config.getBoolean("Arcane_Forging.Downgrades.Enabled", true); }
public int getArcaneForgingDowngradeChanceRank1() { return config.getInt("Arcane_Forging.Downgrades.Chance.Rank_1", 75); }