This commit is contained in:
Gabriele C
2015-11-24 19:04:18 +01:00
parent cc8401e841
commit 28e742e42f
3 changed files with 18 additions and 20 deletions
@@ -33,14 +33,14 @@ public class SwitchAntiBotCommand extends ExecutableCommand {
// Enable the mod
if (newState.equalsIgnoreCase("ON")) {
AntiBot.switchAntiBotStatus(true);
AntiBot.overrideAntiBotStatus(true);
sender.sendMessage("[AuthMe] AntiBot Manual Ovverride: enabled!");
return true;
}
// Disable the mod
if (newState.equalsIgnoreCase("OFF")) {
AntiBot.switchAntiBotStatus(false);
AntiBot.overrideAntiBotStatus(false);
sender.sendMessage("[AuthMe] AntiBotMod Manual Ovverride: disabled!");
return true;
}