1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-21 11:09:41 +00:00

Delete debug about player map that is no longer needed

This commit is contained in:
David Cernat 2016-10-30 02:30:17 +03:00
parent cee7843576
commit 6929cd6c4c

View file

@ -13,9 +13,6 @@ void Players::DeletePlayer(RakNet::RakNetGUID guid)
LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Deleting player with guid %lu",
guid.g);
LOG_APPEND(Log::LOG_INFO, "- %i players remaining before",
players.size());
if (players[guid.g] != 0)
{
LOG_APPEND(Log::LOG_INFO, "- Emptying slot %i",
@ -25,9 +22,6 @@ void Players::DeletePlayer(RakNet::RakNetGUID guid)
delete players[guid.g];
players.erase(guid.g);
}
LOG_APPEND(Log::LOG_INFO, "- %i players remaining after",
players.size());
}
void Players::NewPlayer(RakNet::RakNetGUID guid)