mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-04 17:06:16 +00:00
Moved chunk population to async tasks, and no more cut trees!
This commit is contained in:
@ -357,4 +357,12 @@ abstract class BaseFullChunk implements FullChunk{
|
||||
$this->hasChanged = (bool) $changed;
|
||||
}
|
||||
|
||||
public static function fromFastBinary($data, LevelProvider $provider = null){
|
||||
self::fromBinary($data, $provider);
|
||||
}
|
||||
|
||||
public function toFastBinary(){
|
||||
return $this->toBinary();
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user