From c2afc05e7c066ffd0f5676c48e18371a9f39cc99 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 1 Dec 2019 21:03:29 +0000 Subject: [PATCH] Entity: fix type doc comment for static knownEntities field --- src/pocketmine/entity/Entity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/entity/Entity.php b/src/pocketmine/entity/Entity.php index fac66b10c..1496e1633 100644 --- a/src/pocketmine/entity/Entity.php +++ b/src/pocketmine/entity/Entity.php @@ -318,7 +318,7 @@ abstract class Entity extends Location implements Metadatable, EntityIds{ public const DATA_PLAYER_FLAG_DEAD = 2; //TODO: CHECK public static $entityCount = 1; - /** @var Entity[] */ + /** @var string[] */ private static $knownEntities = []; /** @var string[][] */ private static $saveNames = [];