diff --git a/src/entity/EntityFactory.php b/src/entity/EntityFactory.php index 2c0510a6b..c7bab408c 100644 --- a/src/entity/EntityFactory.php +++ b/src/entity/EntityFactory.php @@ -200,7 +200,6 @@ final class EntityFactory{ * * @throws \RuntimeException *@internal - * */ public static function createFromData(World $world, CompoundTag $nbt) : ?Entity{ $saveId = $nbt->getTag("id") ?? $nbt->getTag("identifier"); diff --git a/src/world/World.php b/src/world/World.php index 3365e664d..aa374dd94 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -597,7 +597,6 @@ class World implements ChunkManager{ * Unregisters a chunk listener previously registered. * *@see World::registerChunkListener() - * */ public function unregisterChunkListener(ChunkListener $listener, int $chunkX, int $chunkZ) : void{ $hash = World::chunkHash($chunkX, $chunkZ);