mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-16 03:51:37 +00:00
fix phpdoc spacing screwed up by phpstorm
This commit is contained in:
@@ -144,7 +144,7 @@ final class TileFactory{
|
||||
}
|
||||
|
||||
/**
|
||||
*@internal
|
||||
* @internal
|
||||
*/
|
||||
public static function createFromData(World $world, CompoundTag $nbt) : ?Tile{
|
||||
$type = $nbt->getString(Tile::TAG_ID, "", true);
|
||||
|
@@ -199,7 +199,7 @@ final class EntityFactory{
|
||||
* Creates an entity from data stored on a chunk.
|
||||
*
|
||||
* @throws \RuntimeException
|
||||
*@internal
|
||||
* @internal
|
||||
*/
|
||||
public static function createFromData(World $world, CompoundTag $nbt) : ?Entity{
|
||||
$saveId = $nbt->getTag("id") ?? $nbt->getTag("identifier");
|
||||
|
@@ -596,7 +596,7 @@ class World implements ChunkManager{
|
||||
/**
|
||||
* Unregisters a chunk listener previously registered.
|
||||
*
|
||||
*@see World::registerChunkListener()
|
||||
* @see World::registerChunkListener()
|
||||
*/
|
||||
public function unregisterChunkListener(ChunkListener $listener, int $chunkX, int $chunkZ) : void{
|
||||
$hash = World::chunkHash($chunkX, $chunkZ);
|
||||
|
Reference in New Issue
Block a user