mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 10:53:05 +00:00
Improved manager
This commit is contained in:
@ -308,9 +308,9 @@ interface FullChunk{
|
||||
|
||||
public function &getBlockLightArray();
|
||||
|
||||
public function toBinary();
|
||||
public function &toBinary();
|
||||
|
||||
public function toFastBinary();
|
||||
public function &toFastBinary();
|
||||
|
||||
/**
|
||||
* @return boolean
|
||||
|
@ -357,8 +357,8 @@ abstract class BaseFullChunk implements FullChunk{
|
||||
$this->hasChanged = (bool) $changed;
|
||||
}
|
||||
|
||||
public static function &fromFastBinary(&$data, LevelProvider $provider = null){
|
||||
static::fromBinary($data, $provider);
|
||||
public static function fromFastBinary(&$data, LevelProvider $provider = null){
|
||||
return static::fromBinary($data, $provider);
|
||||
}
|
||||
|
||||
public function &toFastBinary(){
|
||||
|
Reference in New Issue
Block a user