mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Correct typo from max world height of 265 to 256
This commit is contained in:
parent
164907a47a
commit
2ccc234608
@ -2559,7 +2559,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
|
|||||||
int zv = (int) (z.getValue() * unit.getZ() + zero2.getZ());
|
int zv = (int) (z.getValue() * unit.getZ() + zero2.getZ());
|
||||||
|
|
||||||
BlockState get;
|
BlockState get;
|
||||||
if (yv >= 0 && yv < 265) {
|
if (yv >= 0 && yv < 256) {
|
||||||
get = getBlock(xv, yv, zv);
|
get = getBlock(xv, yv, zv);
|
||||||
} else {
|
} else {
|
||||||
get = BlockTypes.AIR.getDefaultState();
|
get = BlockTypes.AIR.getDefaultState();
|
||||||
|
Loading…
Reference in New Issue
Block a user