From edf234c0ffe23ec288c1a00bcffadef758a2761b Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 22 Jan 2023 12:14:15 -0800 Subject: [PATCH] fix typo in error message --- src/ReceiveCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReceiveCommands.cc b/src/ReceiveCommands.cc index 66eb0a55..d082bdca 100644 --- a/src/ReceiveCommands.cc +++ b/src/ReceiveCommands.cc @@ -3313,7 +3313,7 @@ static void on_6F(shared_ptr s, shared_ptr 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);