mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 03:03:43 +01:00 
			
		
		
		
	check if clusters are enables
This commit is contained in:
		@@ -248,12 +248,12 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
 | 
			
		||||
        }
 | 
			
		||||
        Player player = event.getPlayer();
 | 
			
		||||
        Location loc = event.getBlock().getLocation();
 | 
			
		||||
        if (isInPlot(loc)) {
 | 
			
		||||
        final Plot plot = getCurrentPlot(loc);
 | 
			
		||||
        if (plot != null) {
 | 
			
		||||
            if (event.getBlock().getY() == 0) {
 | 
			
		||||
                event.setCancelled(true);
 | 
			
		||||
                return;
 | 
			
		||||
            }
 | 
			
		||||
            final Plot plot = getCurrentPlot(loc);
 | 
			
		||||
            if (!plot.hasOwner()) {
 | 
			
		||||
                if (PlotMain.hasPermission(player, "plots.admin.destroy.unowned")) {
 | 
			
		||||
                    return;
 | 
			
		||||
 
 | 
			
		||||
@@ -91,7 +91,7 @@ import com.sk89q.worldguard.protection.flags.BooleanFlag;
 | 
			
		||||
    
 | 
			
		||||
    public static boolean isPlotArea(Location location) {
 | 
			
		||||
        PlotWorld plotworld = PlotMain.getWorldSettings(location.getWorld());
 | 
			
		||||
        if (plotworld.REQUIRE_CLUSTER) {
 | 
			
		||||
        if (Settings.ENABLE_CLUSTERS && plotworld.REQUIRE_CLUSTER) {
 | 
			
		||||
            return ClusterManager.getCluster(location) != null;
 | 
			
		||||
        }
 | 
			
		||||
        return true;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user