This commit is contained in:
Jesse Boyd 2016-06-24 05:30:26 +10:00
parent 8fd2599686
commit b587b430b8

View File

@ -1081,11 +1081,12 @@ public class PS {
return; return;
} }
} }
loop:
for (Entry<PlotId, Plot> entry2 : value.getPlotEntries()) { for (Entry<PlotId, Plot> entry2 : value.getPlotEntries()) {
Plot plot = entry2.getValue(); Plot plot = entry2.getValue();
for (PlotFilter filter : filters) { for (PlotFilter filter : filters) {
if (!filter.allowsPlot(plot)) { if (!filter.allowsPlot(plot)) {
return; continue loop;
} }
} }
set.add(plot); set.add(plot);