[server] Change member variable names in CPlayerPool

This commit is contained in:
RD42
2024-04-11 22:47:05 +08:00
parent 1830ceff90
commit fff2416b13
6 changed files with 45 additions and 5 deletions

View File

@ -6,7 +6,7 @@ CPlayerPool::CPlayerPool()
{
for(PLAYERID playerId = 0; playerId < MAX_PLAYERS; playerId++) {
m_bPlayerSlotState[playerId] = FALSE;
field_2599C[playerId] = 0;
m_pPlayers[playerId] = NULL;
field_23A5C[playerId] = 0;
field_3E8C[playerId] = pNetGame->GetTime();
}