From eebb2476b07ab8f2b4a6d14514cd99b445bf8f9a Mon Sep 17 00:00:00 2001 From: kremsy Date: Sat, 13 May 2017 22:48:05 +0200 Subject: [PATCH] added lagoon environment --- core/ManiaExchange/ManiaExchangeManager.php | 19 ------------------- core/ManiaExchange/ManiaExchangeMapSearch.php | 8 +++++--- 2 files changed, 5 insertions(+), 22 deletions(-) diff --git a/core/ManiaExchange/ManiaExchangeManager.php b/core/ManiaExchange/ManiaExchangeManager.php index 32e13fa0..7a815a4b 100644 --- a/core/ManiaExchange/ManiaExchangeManager.php +++ b/core/ManiaExchange/ManiaExchangeManager.php @@ -325,23 +325,4 @@ class ManiaExchangeManager implements UsageInformationAble { $mapSearch->fetchMapsAsync($function); } - - /** - * Get the Current Environment by String - * - * @param string $env - * @return int - */ - private function getEnvironment($env) { - switch ($env) { - case 'TMCanyon': - return 1; - case 'TMStadium': - return 2; - case 'TMValley': - return 3; - default: - return -1; - } - } } diff --git a/core/ManiaExchange/ManiaExchangeMapSearch.php b/core/ManiaExchange/ManiaExchangeMapSearch.php index 41fde819..b89c947e 100644 --- a/core/ManiaExchange/ManiaExchangeMapSearch.php +++ b/core/ManiaExchange/ManiaExchangeMapSearch.php @@ -114,7 +114,7 @@ class ManiaExchangeMapSearch implements UsageInformationAble { //Set some defaults: $this->mapLimit = 100; $this->priorityOrder = self::SEARCH_ORDER_UPDATED_NEWEST; - $this->mp4 = true; + $this->mp4 = true; //Set Min Exe Build Default for games which are not Trackmania /*if ($this->titlePrefix !== "tm") { @@ -224,8 +224,8 @@ class ManiaExchangeMapSearch implements UsageInformationAble { if (isset($this->key)) { $parameters .= "&key=" . $this->key; } - if (isset($this->mp4)){ - $parameters .= "&mp4=" . $this->mp4; + if (isset($this->mp4)) { + $parameters .= "&mp4=" . $this->mp4; } $asyncHttpRequest = new AsyncHttpRequest($this->maniaControl, $this->url . $parameters); @@ -278,6 +278,8 @@ class ManiaExchangeMapSearch implements UsageInformationAble { return 2; case 'TMValley': return 3; + case 'TMLagoon': + return 4; default: return -1; }