mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-14 21:07:59 +00:00
Fixes #1211
This commit is contained in:
parent
56000d60e7
commit
8fd2599686
1 changed files with 2 additions and 2 deletions
|
@ -1078,14 +1078,14 @@ public class PS {
|
||||||
public void run(PlotArea value) {
|
public void run(PlotArea value) {
|
||||||
for (PlotFilter filter : filters) {
|
for (PlotFilter filter : filters) {
|
||||||
if (!filter.allowsArea(value)) {
|
if (!filter.allowsArea(value)) {
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
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)) {
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
set.add(plot);
|
set.add(plot);
|
||||||
|
|
Loading…
Reference in a new issue