Use version min/max heights if world not present in QueueCoordinator

This commit is contained in:
dordsor21 2022-02-09 14:27:01 +00:00 committed by Jordan
parent 7c48fe198d
commit bbe31379e8

View File

@ -80,7 +80,7 @@ public abstract class QueueCoordinator {
@Deprecated(forRemoval = true, since = "TODO")
public ScopedQueueCoordinator getForChunk(int x, int z) {
if (getWorld() == null) {
return getForChunk(x, z, 0, 255);
return getForChunk(x, z, PlotSquared.platform().versionMinHeight(), PlotSquared.platform().versionMaxHeight());
}
return getForChunk(x, z, getWorld().getMinY(), getWorld().getMaxY());
}