mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-21 08:17:34 +00:00
Level: Updated TIME_* constants (#3385)
- Added Level::TIME_NOON - Added Level::TIME_MIDNIGHT - Changed values of Level::TIME_DAY and Level::TIME_NIGHT
This commit is contained in:
parent
8c0d441a13
commit
58e32086c0
@ -128,9 +128,11 @@ class Level implements ChunkManager, Metadatable{
|
||||
public const Y_MASK = 0xFF;
|
||||
public const Y_MAX = 0x100; //256
|
||||
|
||||
public const TIME_DAY = 0;
|
||||
public const TIME_DAY = 1000;
|
||||
public const TIME_NOON = 6000;
|
||||
public const TIME_SUNSET = 12000;
|
||||
public const TIME_NIGHT = 14000;
|
||||
public const TIME_NIGHT = 13000;
|
||||
public const TIME_MIDNIGHT = 18000;
|
||||
public const TIME_SUNRISE = 23000;
|
||||
|
||||
public const TIME_FULL = 24000;
|
||||
|
Loading…
x
Reference in New Issue
Block a user