diff --git a/source/main/network/Network.cpp b/source/main/network/Network.cpp index 15f927cdd0..b8d1ac7b00 100644 --- a/source/main/network/Network.cpp +++ b/source/main/network/Network.cpp @@ -95,7 +95,7 @@ Ogre::ColourValue Network::GetPlayerColor(int color_num) { int numColours = sizeof(MP_COLORS) / sizeof(Ogre::ColourValue); if (color_num < 0 || color_num >= numColours) - return Ogre::ColourValue::ZERO; + return Ogre::ColourValue::White; return MP_COLORS[color_num]; }