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