Remove erroneous world height 256 limit

This commit is contained in:
dordsor21 2022-06-13 15:11:39 +01:00
parent a6b1b411d5
commit f8583fb7cb
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -113,7 +113,7 @@ public class FaweDelegateSchematicHandler {
}
if (((region.getMaximumPoint().getX() - region.getMinimumPoint().getX() + xOffset + 1) < WIDTH) || (
(region.getMaximumPoint().getZ() - region.getMinimumPoint().getZ() + zOffset + 1) < LENGTH) || (HEIGHT
> 256)) {
> worldHeight)) {
if (whenDone != null) {
TaskManager.runTask(whenDone);
}