diff -r 8ad85859dd3f -r 32e8c81ca35c gameServer/HWProtoLobbyState.hs --- a/gameServer/HWProtoLobbyState.hs Sat Dec 08 14:19:11 2018 +0100 +++ b/gameServer/HWProtoLobbyState.hs Sat Dec 08 14:22:24 2018 +0100 @@ -220,12 +220,18 @@ handleCmd_lobby ["CLEAR_ACCOUNTS_CACHE"] = serverAdminOnly $ return [ClearAccountsCache] +handleCmd_lobby ["RESTART_SERVER", "YES"] = serverAdminOnly $ + return [RestartServer] + handleCmd_lobby ["RESTART_SERVER"] = serverAdminOnly $ - return [RestartServer] + return [Warning $ loc "Please confirm server restart with '/restart_server yes'."] + +handleCmd_lobby ["RESTART_SERVER", _] = handleCmd_lobby ["RESTART_SERVER"] + handleCmd_lobby ["STATS"] = serverAdminOnly $ return [Stats] handleCmd_lobby (s:_) = return [ProtocolError $ "Incorrect command '" `B.append` s `B.append` "' (state: in lobby)"] -handleCmd_lobby [] = return [ProtocolError "Empty command (state: in lobby)"] \ No newline at end of file +handleCmd_lobby [] = return [ProtocolError "Empty command (state: in lobby)"]