From 8a6726dad1c0b35a7a4f2f3616b5f97218f32236 Mon Sep 17 00:00:00 2001 From: Max Klaversma Date: Mon, 14 Apr 2014 12:26:21 +0200 Subject: [PATCH] Commented version check, because of updates towards MP2 MCs --- application/core/ManiaControl.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/core/ManiaControl.php b/application/core/ManiaControl.php index 63be8bad..825a8260 100644 --- a/application/core/ManiaControl.php +++ b/application/core/ManiaControl.php @@ -294,11 +294,12 @@ class ManiaControl implements CommandListener, TimerListener { // Connect to server $this->connect(); + /* - Commented for now, because of updates towards MP2 MCs // Check if the version of the server is high enough $version = $this->client->getVersion(); if($version->build < self::MIN_DEDIVERSION) { trigger_error("The server has version ".$version->build.", while at least ".self::MIN_DEDIVERSION." is required!", E_USER_ERROR); - } + }*/ // OnInit callback $this->callbackManager->triggerCallback(CallbackManager::CB_ONINIT);