mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 18:24:43 +02:00
3.3.2
This commit is contained in:
@ -55,8 +55,8 @@ public class SpongeCommand implements CommandCallable {
|
||||
final Set<String> tabOptions = new HashSet<>();
|
||||
final String arg = split[0].toLowerCase();
|
||||
ArrayList<String> labels = new ArrayList<>();
|
||||
for (final Command<PlotPlayer> cmd : MainCommand.getInstance().getCommands()) {
|
||||
final String label = cmd.getCommand();
|
||||
for (final Command cmd : MainCommand.getInstance().getCommands()) {
|
||||
final String label = cmd.toS();
|
||||
HashSet<String> aliases = new HashSet<>(cmd.getAliases());
|
||||
aliases.add(label);
|
||||
for (String alias : aliases) {
|
||||
|
Reference in New Issue
Block a user