From 614627ef24dd244923cfa67e89c1e0779673e2aa Mon Sep 17 00:00:00 2001 From: kremsy Date: Thu, 9 Jan 2014 21:49:23 +0100 Subject: [PATCH] small fix --- application/plugins/ChatMessagePlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/plugins/ChatMessagePlugin.php b/application/plugins/ChatMessagePlugin.php index a7b62e21..92f2fefd 100644 --- a/application/plugins/ChatMessagePlugin.php +++ b/application/plugins/ChatMessagePlugin.php @@ -79,7 +79,7 @@ class ChatMessagePlugin implements CommandListener, Plugin { * @param Player $player */ public function chat_me(array $chat, Player $player) { - $message = substr($chat[1][2], 3); + $message = substr($chat[1][2], 4); $msg = '$<' . $player->nickname . '$>$s$i$fa0 ' . $message; $this->maniaControl->chat->sendChat($msg, null, false);