Changed the maplist a bit and changed maps limit to avoid crash

This commit is contained in:
Max Klaversma
2014-04-19 22:05:18 +02:00
committed by Steffen Schröder
parent 34d0ad54fa
commit be4d96fa22
2 changed files with 12 additions and 6 deletions

View File

@ -370,7 +370,7 @@ class MapManager implements CallbackListener {
* Updates the full Map list, needed on Init, addMap and on ShuffleMaps
*/
private function updateFullMapList() {
$maps = $this->maniaControl->client->getMapList(1000, 0);
$maps = $this->maniaControl->client->getMapList(150, 0);
$tempList = array();
foreach ($maps as $rpcMap) {
if (array_key_exists($rpcMap->uId, $this->maps)) {