We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 549e098 commit 634eb6bCopy full SHA for 634eb6b
GeneralsMD/Code/GameEngine/Source/GameNetwork/GameInfo.cpp
@@ -923,11 +923,13 @@ AsciiString GameInfoToAsciiString( const GameInfo *game )
923
}
924
925
UnsignedByte patchedClients = 0;
926
- for (Int i = 0; i < MAX_SLOTS; ++i)
927
{
928
- const GameSlot* slot = game->getConstSlot(i);
929
- if (slot && slot->isHuman() && (i == game->getLocalSlotNum() || slot->getPatchVersion() >= 1337))
930
- patchedClients |= (1 << i);
+ for (Int i = 0; i < MAX_SLOTS; ++i)
+ {
+ const GameSlot* slot = game->getConstSlot(i);
+ if (slot && slot->isHuman() && (i == game->getLocalSlotNum() || slot->getPatchVersion() >= 1337))
931
+ patchedClients |= (1 << i);
932
+ }
933
934
935
AsciiString statsString;
0 commit comments