mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-06 11:57:10 +00:00
Chunk: Remove unnecessary default values
these are assigned in the constructor anyway.
This commit is contained in:
parent
49301b0d74
commit
c564655f9b
@ -54,10 +54,10 @@ class Chunk{
|
|||||||
protected $height = Chunk::MAX_SUBCHUNKS;
|
protected $height = Chunk::MAX_SUBCHUNKS;
|
||||||
|
|
||||||
/** @var \SplFixedArray|SubChunkInterface[] */
|
/** @var \SplFixedArray|SubChunkInterface[] */
|
||||||
protected $subChunks = [];
|
protected $subChunks;
|
||||||
|
|
||||||
/** @var EmptySubChunk */
|
/** @var EmptySubChunk */
|
||||||
protected $emptySubChunk = null;
|
protected $emptySubChunk;
|
||||||
|
|
||||||
/** @var Tile[] */
|
/** @var Tile[] */
|
||||||
protected $tiles = [];
|
protected $tiles = [];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user