From 8fd2599686c421ba11db6c47c2ffd6975428d0b5 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Fri, 24 Jun 2016 02:20:21 +1000 Subject: [PATCH] Fixes #1211 --- Core/src/main/java/com/intellectualcrafters/plot/PS.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/intellectualcrafters/plot/PS.java b/Core/src/main/java/com/intellectualcrafters/plot/PS.java index f28a55d71..c85b031a7 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/PS.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/PS.java @@ -1078,14 +1078,14 @@ public class PS { public void run(PlotArea value) { for (PlotFilter filter : filters) { if (!filter.allowsArea(value)) { - continue; + return; } } for (Entry entry2 : value.getPlotEntries()) { Plot plot = entry2.getValue(); for (PlotFilter filter : filters) { if (!filter.allowsPlot(plot)) { - continue; + return; } } set.add(plot);