mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Provide no suggestions instead of player names for commands
This commit is contained in:
parent
e3fbb32399
commit
b6f1610a7e
1 changed files with 1 additions and 1 deletions
|
@ -78,6 +78,6 @@ public class BukkitCommand implements CommandExecutor, TabCompleter {
|
||||||
for (com.plotsquared.core.command.Command o : objects) {
|
for (com.plotsquared.core.command.Command o : objects) {
|
||||||
result.add(o.toString());
|
result.add(o.toString());
|
||||||
}
|
}
|
||||||
return result.isEmpty() ? null : result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue