Position: mark level field as nullable

allowing the level to be null is, to be honest, a big design flaw, but one that can't be fixed without BC breaks.
This commit is contained in:
Dylan K. Taylor 2019-12-04 21:31:35 +00:00
parent d867ffc60d
commit 39c607cbd5

View File

@ -29,7 +29,7 @@ use function assert;
class Position extends Vector3{
/** @var Level */
/** @var Level|null */
public $level = null;
/**