fix typo in error message

This commit is contained in:
Martin Michelsen
2023-01-22 12:14:15 -08:00
parent 4b63475662
commit edf234c0ff
+1 -1
View File
@@ -3313,7 +3313,7 @@ static void on_6F(shared_ptr<ServerState> s, shared_ptr<Client> c,
auto l = s->find_lobby(c->lobby_id);
if (!l || !l->is_game()) {
throw runtime_error("client sent ready command ontside of game");
throw runtime_error("client sent ready command outside of game");
}
c->flags &= (~Client::Flag::LOADING);