diff --git a/source/glest_game/network/network_interface.cpp b/source/glest_game/network/network_interface.cpp index 621d94ab..bccceb54 100644 --- a/source/glest_game/network/network_interface.cpp +++ b/source/glest_game/network/network_interface.cpp @@ -49,6 +49,9 @@ NetworkInterface::NetworkInterface() { receivedDataSynchCheck=false; networkPlayerFactionCRCMutex = new Mutex(); + for(unsigned int index = 0; index < GameConstants::maxPlayers; ++index) { + networkPlayerFactionCRC[index] = 0; + } } void NetworkInterface::init() {