This commit is contained in:
Lemon 2019-02-09 14:48:44 +05:00 committed by GitHub
parent 00483be7d4
commit f263c0f5f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,7 +107,7 @@ public class Command_jumppads extends FreedomCommand
}
if (args.length == 1)
{
return Arrays.asList("on", "off", "info", "sideways", "strength");
return Arrays.asList("on", "off", "info", "sideways");
}
else if (args.length == 2)
{
@ -115,10 +115,6 @@ public class Command_jumppads extends FreedomCommand
{
return Arrays.asList("on", "off");
}
else if (args[0].equals("strength"))
{
return Arrays.asList("1", "2", "3", "4", "5", "6", "7", "8", "9", "10");
}
}
return Collections.emptyList();