Player: remove useless InteractPacket handler

all the things we cared about in here don't exist anymore, so there's no sense in the handler still existing. It can be restored when we want to use the things it still does.
This commit is contained in:
Dylan K. Taylor
2018-07-20 12:39:48 +01:00
parent 25cfcada26
commit 57a86d9ed7
2 changed files with 1 additions and 27 deletions

View File

@ -122,7 +122,7 @@ class SimpleSessionHandler extends SessionHandler{
}
public function handleInteract(InteractPacket $packet) : bool{
return $this->player->handleInteract($packet);
return false; //TODO
}
public function handleBlockPickRequest(BlockPickRequestPacket $packet) : bool{