Expand height range to include -64 to 320

This commit is contained in:
Dylan K. Taylor
2022-04-15 19:10:24 +01:00
parent c1c3475e5a
commit eafbc3a468
5 changed files with 7 additions and 34 deletions

View File

@ -134,8 +134,8 @@ class World implements ChunkManager{
/** @var int */
private static $worldIdCounter = 1;
public const Y_MAX = 256;
public const Y_MIN = 0;
public const Y_MAX = 320;
public const Y_MIN = -64;
public const TIME_DAY = 1000;
public const TIME_NOON = 6000;