From 51b889b81269a622d42dc06d76138b2769da2c09 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Tue, 31 Oct 2017 00:07:20 +0100 Subject: [PATCH] Removing debug --- src/Ad5001/Spooky/entity/Ghost.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Ad5001/Spooky/entity/Ghost.php b/src/Ad5001/Spooky/entity/Ghost.php index 0106e3e..acdd01f 100644 --- a/src/Ad5001/Spooky/entity/Ghost.php +++ b/src/Ad5001/Spooky/entity/Ghost.php @@ -159,7 +159,6 @@ class Ghost extends Human { public function movePlayerRandomly(){ if(!$this->checkIfConnected()) return; if(rand(0,20) == 1) { - echo "\nMove ya!\n"; $this->associatedPlayer->teleport(new Vector3($this->associatedPlayer->x + rand(0, 3) - rand(0, 3), $this->associatedPlayer->y, $this->associatedPlayer->z + rand(0, 3) - rand(0, 3))); } }