whoever did this was high

This commit is contained in:
Super_ 2020-01-02 18:39:30 -05:00
parent a2404d1bc6
commit ee4bbea340

View File

@ -46,7 +46,7 @@ public class Command_plugincontrol extends FreedomCommand
return false; return false;
} }
if ("enable".equals(args[0])) if (args[0].equals("enable"))
{ {
final Plugin target = getPlugin(args[1]); final Plugin target = getPlugin(args[1]);
if (target == null) if (target == null)
@ -73,7 +73,7 @@ public class Command_plugincontrol extends FreedomCommand
return true; return true;
} }
if ("disable".equals(args[0])) if (args[0].equals("disable"))
{ {
final Plugin target = getPlugin(args[1]); final Plugin target = getPlugin(args[1]);
if (target == null) if (target == null)
@ -106,7 +106,7 @@ public class Command_plugincontrol extends FreedomCommand
return true; return true;
} }
if ("reload".equals(args[0])) if (args[0].equals("reload"))
{ {
final Plugin target = getPlugin(args[1]); final Plugin target = getPlugin(args[1]);
if (target == null) if (target == null)