diff --git a/src/pocketmine/world/World.php b/src/pocketmine/world/World.php index b1f233bbe..50a0be869 100644 --- a/src/pocketmine/world/World.php +++ b/src/pocketmine/world/World.php @@ -1964,18 +1964,6 @@ class World implements ChunkManager{ return ($chunk = $this->getChunk($X, $Z)) !== null ? $chunk->getEntities() : []; } - /** - * Gives a list of the Tile entities on a given chunk - * - * @param int $X - * @param int $Z - * - * @return Tile[] - */ - public function getChunkTiles(int $X, int $Z) : array{ - return ($chunk = $this->getChunk($X, $Z)) !== null ? $chunk->getTiles() : []; - } - /** * Gets the raw block skylight level *