diff --git a/application/core/Maps/MapManager.php b/application/core/Maps/MapManager.php index f2c24c7f..67a0183e 100644 --- a/application/core/Maps/MapManager.php +++ b/application/core/Maps/MapManager.php @@ -636,10 +636,10 @@ class MapManager implements CallbackListener { * Handle Script BeginMap callback * * @param string $mapUid - * @param bool $restart + * @param bool $restart */ public function handleScriptBeginMap($mapUid, $restart) { - $this->beginMap($mapUid, $restart); + $this->beginMap($mapUid, strtolower($restart) === 'true' ? true : false); } /** @@ -691,7 +691,7 @@ class MapManager implements CallbackListener { /** * Manage the End of a Map */ - private function endMap(){ + private function endMap() { if ($this->mapEnded) { return; } diff --git a/application/plugins/ChatMessagePlugin.php b/application/plugins/ChatMessagePlugin.php deleted file mode 100644 index d1afbc93..00000000 --- a/application/plugins/ChatMessagePlugin.php +++ /dev/null @@ -1 +0,0 @@ -