Fixes FS-343

This commit is contained in:
Video 2022-11-04 21:30:28 -06:00 committed by Paul Reilly
parent 90c276668b
commit 9998392b1a

View File

@ -143,13 +143,10 @@ public class Command_plugincontrol extends FreedomCommand
{ {
return Arrays.asList("enable", "disable", "reload", "list"); return Arrays.asList("enable", "disable", "reload", "list");
} }
else if (args.length == 2) else if (args.length == 2 && !args[0].equalsIgnoreCase("list"))
{
if (!args[0].equals("list"))
{ {
return getAllPluginNames(); return getAllPluginNames();
} }
}
return Collections.emptyList(); return Collections.emptyList();
} }