From 389990e0a8a7fae51f394a1b2b3711cf13b5cacc Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 18 May 2018 20:09:55 +0100 Subject: [PATCH] Entity: remove useless functions these may be TODOs but I have no idea why or where they need to be implemented, so until they do they are useless clutter. --- src/pocketmine/entity/Entity.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/pocketmine/entity/Entity.php b/src/pocketmine/entity/Entity.php index 78f66473b4..24ef8b5152 100644 --- a/src/pocketmine/entity/Entity.php +++ b/src/pocketmine/entity/Entity.php @@ -1455,18 +1455,10 @@ abstract class Entity extends Location implements Metadatable, EntityIds{ } - public function handleLavaMovement(){ //TODO - - } - public function getEyeHeight() : float{ return $this->eyeHeight; } - public function moveFlying(){ //TODO - - } - public function onCollideWithPlayer(Player $player){ }