From 3fc1be12629b99da851c0fff38cba01db321565b Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Tue, 27 May 2014 16:15:23 +0200 Subject: [PATCH] Fixed crash when removing Tiles --- src/pocketmine/tile/Tile.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pocketmine/tile/Tile.php b/src/pocketmine/tile/Tile.php index 861b17ceb..eb453c7d1 100644 --- a/src/pocketmine/tile/Tile.php +++ b/src/pocketmine/tile/Tile.php @@ -101,7 +101,6 @@ abstract class Tile extends Position{ unset(Tile::$needUpdate[$this->id]); $this->getLevel()->removeTile($this); unset($this->getLevel()->chunkTiles[$this->chunkIndex][$this->id]); - unset(Tile::$list[$this->id]); } }