1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00
This commit is contained in:
Andrey Filipenkov
2022-07-28 12:29:39 +03:00
parent 7f3baf6831
commit 342a859a3f
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -370,7 +370,7 @@ void CVCMIServer::announcePack(std::unique_ptr<CPackForLobby> pack)
{ {
for(auto c : connections) 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 // Until UUID set we only pass LobbyClientConnected to this client
if(c->uuid == uuid && !dynamic_cast<LobbyClientConnected *>(pack.get())) if(c->uuid == uuid && !dynamic_cast<LobbyClientConnected *>(pack.get()))
continue; continue;