mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-12 16:59:44 +00:00
Merge branch 'release/3.4'
This commit is contained in:
commit
f7ba4f553c
@ -23,7 +23,11 @@ declare(strict_types=1);
|
||||
|
||||
namespace pocketmine\level\format;
|
||||
|
||||
define(__NAMESPACE__ . '\ZERO_NIBBLE_ARRAY', str_repeat("\x00", 2048));
|
||||
$name = __NAMESPACE__ . '\ZERO_NIBBLE_ARRAY';
|
||||
if(!defined($name)){
|
||||
define($name, str_repeat("\x00", 2048));
|
||||
}
|
||||
unset($name);
|
||||
|
||||
class SubChunk implements SubChunkInterface{
|
||||
protected $ids;
|
||||
|
Loading…
x
Reference in New Issue
Block a user