exception fix

This commit is contained in:
kremsy
2014-04-21 23:14:06 +02:00
committed by Steffen Schröder
parent c0255bd442
commit 843467072d
3 changed files with 11 additions and 2 deletions

View File

@ -14,6 +14,7 @@ use ManiaControl\Players\Player;
use Maniaplanet\DedicatedServer\InvalidArgumentException;
use Maniaplanet\DedicatedServer\Xmlrpc\CouldNotWritePlaylistFileException;
use Maniaplanet\DedicatedServer\Xmlrpc\Exception;
use Maniaplanet\DedicatedServer\Xmlrpc\MapNotInCurrentSelectionException;
use Maniaplanet\DedicatedServer\Xmlrpc\StartIndexOutOfBoundException;
/**
@ -238,7 +239,11 @@ class MapManager implements CallbackListener {
}
// Remove map
$this->maniaControl->client->removeMap($map->fileName);
try{
$this->maniaControl->client->removeMap($map->fileName);
}catch(MapNotInCurrentSelectionException $e){
}
if ($eraseFile) {
// Check if ManiaControl can even write to the maps dir