From d2a14e8303b40ca7b98fe314864e1d3810a746f8 Mon Sep 17 00:00:00 2001 From: Luke Darling Date: Sun, 3 Aug 2014 13:22:41 -0400 Subject: [PATCH] fixed tell command so itdoesn'tlooklikethisanymore --- src/pocketmine/command/defaults/TellCommand.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pocketmine/command/defaults/TellCommand.php b/src/pocketmine/command/defaults/TellCommand.php index ea33be1b6..75441f75a 100644 --- a/src/pocketmine/command/defaults/TellCommand.php +++ b/src/pocketmine/command/defaults/TellCommand.php @@ -53,12 +53,12 @@ class TellCommand extends VanillaCommand{ $player = $sender->getServer()->getPlayer($name); if($player instanceof Player){ - $sender->sendMessage("[me -> " . $player->getName() . "] " . implode($args)); - $player->sendMessage("[" . $sender->getName() . " -> me] " . implode($args)); + $sender->sendMessage("[me -> " . $player->getName() . "] " . implode(" ",$args)); + $player->sendMessage("[" . $sender->getName() . " -> me] " . implode(" ",$args)); }else{ $sender->sendMessage("There's no player by that name online."); } return true; } -} \ No newline at end of file +}