This commit is contained in:
Jesse Boyd 2018-04-30 06:20:41 +10:00
parent 7519f735bc
commit e244235350
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 3 additions and 1 deletions

View File

@ -161,6 +161,8 @@ public class PlotSquaredFeature extends FaweMaskManager {
@Override
public RegionFilter getFilter(String world) {
return new PlotRegionFilter(PS.get().getPlotArea(world, null));
PlotArea area = PS.get().getPlotArea(world, null);
if (area != null) return new PlotRegionFilter(area);
return null;
}
}