fix: bring default min/max y in line with upstream in AbstractRegion (#1992)

- Fixes #1987
This commit is contained in:
Jordan 2022-10-23 20:22:43 +01:00 committed by GitHub
parent e36b838227
commit bf28ab47b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,23 +223,11 @@ public abstract class AbstractRegion extends AbstractSet<BlockVector3> implement
// Sub-class utilities // Sub-class utilities
protected final int getWorldMinY() { protected final int getWorldMinY() {
//FAWE start > Server default based on version return world == null ? Integer.MIN_VALUE : world.getMinY();
return world == null ? WorldEdit
.getInstance()
.getPlatformManager()
.queryCapability(Capability.WORLD_EDITING)
.versionMinY() : world.getMinY();
//FAWE end
} }
protected final int getWorldMaxY() { protected final int getWorldMaxY() {
//FAWE start > Server default based on version return world == null ? Integer.MAX_VALUE : world.getMaxY();
return world == null ? WorldEdit
.getInstance()
.getPlatformManager()
.queryCapability(Capability.WORLD_EDITING)
.versionMaxY() : world.getMaxY();
//FAWE end
} }
//FAWE start //FAWE start