mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Added a null check for the very unlikely chance that the command isn't found.
This commit is contained in:
parent
008237b2a4
commit
e5da93f359
@ -289,9 +289,11 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain
|
|||||||
@Override public void registerCommands() {
|
@Override public void registerCommands() {
|
||||||
final BukkitCommand bukkitCommand = new BukkitCommand();
|
final BukkitCommand bukkitCommand = new BukkitCommand();
|
||||||
final PluginCommand plotCommand = getCommand("plots");
|
final PluginCommand plotCommand = getCommand("plots");
|
||||||
plotCommand.setExecutor(bukkitCommand);
|
if (plotCommand != null) {
|
||||||
plotCommand.setAliases(Arrays.asList("p", "ps", "plotme", "plot"));
|
plotCommand.setExecutor(bukkitCommand);
|
||||||
plotCommand.setTabCompleter(bukkitCommand);
|
plotCommand.setAliases(Arrays.asList("p", "ps", "plotme", "plot"));
|
||||||
|
plotCommand.setTabCompleter(bukkitCommand);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public File getDirectory() {
|
@Override public File getDirectory() {
|
||||||
|
Loading…
Reference in New Issue
Block a user