From 5f9d7041f472dc7fd0ccac1dbf96f5f21672ec11 Mon Sep 17 00:00:00 2001 From: ryanhamshire Date: Fri, 28 Aug 2015 17:51:37 -0700 Subject: [PATCH] Soft blocks now breakable during post-siege unlock. After a defender loses a siege, during the doors unlocked period, soft blocks now continue to be breakable. --- src/me/ryanhamshire/GriefPrevention/Claim.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/ryanhamshire/GriefPrevention/Claim.java b/src/me/ryanhamshire/GriefPrevention/Claim.java index 7f921ee..3852c9b 100644 --- a/src/me/ryanhamshire/GriefPrevention/Claim.java +++ b/src/me/ryanhamshire/GriefPrevention/Claim.java @@ -413,7 +413,7 @@ public class Claim public String allowBreak(Player player, Material material) { //if under siege, some blocks will be breakable - if(this.siegeData != null) + if(this.siegeData != null || this.doorsOpen) { boolean breakable = false;