From 342a859a3fc3e71a34c3402e8e67b778377b3034 Mon Sep 17 00:00:00 2001 From: Andrey Filipenkov Date: Thu, 28 Jul 2022 12:29:39 +0300 Subject: [PATCH] fix typo --- client/CServerHandler.cpp | 2 +- server/CVCMIServer.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;