Fix issues with chunk saving in single world plots

This commit is contained in:
dordsor21
2021-09-10 14:05:12 +01:00
parent 7bc76a3824
commit 4568b17c54
3 changed files with 4 additions and 8 deletions

View File

@ -148,9 +148,7 @@ public class SinglePlotAreaManager extends DefaultPlotAreaManager {
if (found != null && found.length != 0) {
return found;
}
return isWorld(world) || world.equals("*") ?
array :
all.length == 0 ? noPlotAreas : super.getPlotAreas(world, region);
return isWorld(world) || world.equals("*") ? array : all.length == 0 ? noPlotAreas : found;
}
@Override