maplist cleanup
This commit is contained in:
@ -43,6 +43,8 @@ class FaultException extends Exception
|
||||
return new ServerOptionsException($faultString, $faultCode);
|
||||
case 'the next map must be different from the current one.':
|
||||
return new NextMapException($faultString, $faultCode);
|
||||
case 'Map not found.':
|
||||
return new MapNotFoundException($faultString, $faultCode);
|
||||
}
|
||||
|
||||
return new self($faultString, $faultCode);
|
||||
@ -61,4 +63,5 @@ class MapNotCompatibleOrCompleteException extends FaultException{}
|
||||
class PlayerAlreadyIgnoredException extends FaultException{}
|
||||
class PlayerNotIgnoredException extends FaultException{}
|
||||
class ServerOptionsException extends FaultException{}
|
||||
class NextMapException extends FaultException{}
|
||||
class NextMapException extends FaultException{}
|
||||
class MapNotFoundException extends FaultException{}
|
Reference in New Issue
Block a user