Andrey Filipenkov 3 lat temu
rodzic
commit
342a859a3f
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      client/CServerHandler.cpp
  2. 1 1
      server/CVCMIServer.cpp

+ 1 - 1
client/CServerHandler.cpp

@@ -79,7 +79,7 @@ public:
 	bool applyOnLobbyHandler(CServerHandler * handler, void * pack) const override
 	{
 		T * ptr = static_cast<T *>(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);
 	}
 

+ 1 - 1
server/CVCMIServer.cpp

@@ -370,7 +370,7 @@ void CVCMIServer::announcePack(std::unique_ptr<CPackForLobby> 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<LobbyClientConnected *>(pack.get()))
 			continue;