|
@@ -14,6 +14,9 @@ public class ConfigSectionExploitSkills {
|
|
@Setting(value = "Mining", comment = "Exploit settings related to Mining")
|
|
@Setting(value = "Mining", comment = "Exploit settings related to Mining")
|
|
private ConfigSectionExploitMining configSectionExploitMining = new ConfigSectionExploitMining();
|
|
private ConfigSectionExploitMining configSectionExploitMining = new ConfigSectionExploitMining();
|
|
|
|
|
|
|
|
+ @Setting(value = "Herbalism", comment = "Exploit settings related to Herbalism.")
|
|
|
|
+ private ConfigSectionExploitHerbalism configSectionExploitHerbalism = new ConfigSectionExploitHerbalism();
|
|
|
|
+
|
|
public ConfigSectionExploitAcrobatics getConfigSectionExploitAcrobatics() {
|
|
public ConfigSectionExploitAcrobatics getConfigSectionExploitAcrobatics() {
|
|
return configSectionExploitAcrobatics;
|
|
return configSectionExploitAcrobatics;
|
|
}
|
|
}
|
|
@@ -22,6 +25,10 @@ public class ConfigSectionExploitSkills {
|
|
return configSectionExploitFishing;
|
|
return configSectionExploitFishing;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public ConfigSectionExploitHerbalism getConfigSectionExploitHerbalism() {
|
|
|
|
+ return configSectionExploitHerbalism;
|
|
|
|
+ }
|
|
|
|
+
|
|
public ConfigSectionExploitMining getConfigSectionExploitMining() {
|
|
public ConfigSectionExploitMining getConfigSectionExploitMining() {
|
|
return configSectionExploitMining;
|
|
return configSectionExploitMining;
|
|
}
|
|
}
|
|
@@ -30,6 +37,10 @@ public class ConfigSectionExploitSkills {
|
|
return configSectionExploitMining.isPreventCobblestoneStoneGeneratorXP();
|
|
return configSectionExploitMining.isPreventCobblestoneStoneGeneratorXP();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public boolean isPreventVehicleAutoFarming() {
|
|
|
|
+ return configSectionExploitHerbalism.isPreventVehicleAutoFarming();
|
|
|
|
+ }
|
|
|
|
+
|
|
public long getFishingRodSpamMilliseconds() {
|
|
public long getFishingRodSpamMilliseconds() {
|
|
return configSectionExploitFishing.getFishingRodSpamMilliseconds();
|
|
return configSectionExploitFishing.getFishingRodSpamMilliseconds();
|
|
}
|
|
}
|