From ff18aeaa4ad7f9805a26ecf0cebe4eb1eaaa77e2 Mon Sep 17 00:00:00 2001 From: ryanhamshire Date: Mon, 15 Dec 2014 19:35:03 -0800 Subject: [PATCH] Blocked water flow across subdivision boundaries. No more flowing into subdivision from top level claim or vice-versa. --- src/me/ryanhamshire/GriefPrevention/BlockEventHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/ryanhamshire/GriefPrevention/BlockEventHandler.java b/src/me/ryanhamshire/GriefPrevention/BlockEventHandler.java index aa4d553..37444f5 100644 --- a/src/me/ryanhamshire/GriefPrevention/BlockEventHandler.java +++ b/src/me/ryanhamshire/GriefPrevention/BlockEventHandler.java @@ -603,7 +603,7 @@ public class BlockEventHandler implements Listener if(toClaim != null) { this.lastSpreadClaim = toClaim; - if(!toClaim.contains(spreadEvent.getBlock().getLocation(), false, false)) + if(!toClaim.contains(spreadEvent.getBlock().getLocation(), false, true)) { spreadEvent.setCancelled(true); }