diff --git a/client/CServerHandler.cpp b/client/CServerHandler.cpp index cc9c8c477..e408a37be 100644 --- a/client/CServerHandler.cpp +++ b/client/CServerHandler.cpp @@ -79,7 +79,7 @@ public: bool applyOnLobbyHandler(CServerHandler * handler, void * pack) const override { T * ptr = static_cast(pack); - logNetwork->trace("\tImmidiately apply on lobby: %s", typeList.getTypeInfo(ptr)->name()); + logNetwork->trace("\tImmediately apply on lobby: %s", typeList.getTypeInfo(ptr)->name()); return ptr->applyOnLobbyHandler(handler); } diff --git a/server/CVCMIServer.cpp b/server/CVCMIServer.cpp index cfc2e1da2..2bccd81df 100644 --- a/server/CVCMIServer.cpp +++ b/server/CVCMIServer.cpp @@ -370,7 +370,7 @@ void CVCMIServer::announcePack(std::unique_ptr pack) { for(auto c : connections) { - // FIXME: we need to avoid senting something to client that not yet get answer for LobbyClientConnected + // FIXME: we need to avoid sending something to client that not yet get answer for LobbyClientConnected // Until UUID set we only pass LobbyClientConnected to this client if(c->uuid == uuid && !dynamic_cast(pack.get())) continue;