mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 03:03:43 +01:00 
			
		
		
		
	Fix the actual issue and remove whatever junk from the previous commit
This commit is contained in:
		@@ -2803,6 +2803,7 @@ import org.bukkit.util.Vector;
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
        Entity victim = event.getEntity();
 | 
			
		||||
/*
 | 
			
		||||
        if (victim.getType().equals(EntityType.ITEM_FRAME)) {
 | 
			
		||||
            Plot plot = BukkitUtil.getLocation(victim).getPlot();
 | 
			
		||||
            if (plot != null && !plot.isAdded(damager.getUniqueId())) {
 | 
			
		||||
@@ -2810,6 +2811,7 @@ import org.bukkit.util.Vector;
 | 
			
		||||
                return;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
*/
 | 
			
		||||
        if (!entityDamage(damager, victim, event.getCause())) {
 | 
			
		||||
            if (event.isCancelled()) {
 | 
			
		||||
                if (victim instanceof Ageable) {
 | 
			
		||||
@@ -2918,6 +2920,12 @@ import org.bukkit.util.Vector;
 | 
			
		||||
            if (victim instanceof Hanging) { // hanging
 | 
			
		||||
                if (plot != null && (plot.getFlag(Flags.HANGING_BREAK, false) || plot
 | 
			
		||||
                    .isAdded(plotPlayer.getUUID()))) {
 | 
			
		||||
                    if (Settings.Done.RESTRICT_BUILDING && plot.getFlags().containsKey(Flags.DONE)) {
 | 
			
		||||
                        if (!Permissions.hasPermission(plotPlayer, Captions.PERMISSION_ADMIN_BUILD_OTHER)) {
 | 
			
		||||
                            MainUtil.sendMessage(plotPlayer, Captions.NO_PERMISSION_EVENT, Captions.PERMISSION_ADMIN_BUILD_OTHER);
 | 
			
		||||
                            return false;
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                    return true;
 | 
			
		||||
                }
 | 
			
		||||
                if (!Permissions.hasPermission(plotPlayer, "plots.admin.destroy." + stub)) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user