This commit is contained in:
Jesse Boyd 2016-06-24 02:20:21 +10:00
parent 56000d60e7
commit 8fd2599686

View File

@ -1078,14 +1078,14 @@ public class PS {
public void run(PlotArea value) {
for (PlotFilter filter : filters) {
if (!filter.allowsArea(value)) {
continue;
return;
}
}
for (Entry<PlotId, Plot> entry2 : value.getPlotEntries()) {
Plot plot = entry2.getValue();
for (PlotFilter filter : filters) {
if (!filter.allowsPlot(plot)) {
continue;
return;
}
}
set.add(plot);