- show more friendly message when out of synch detected.

This commit is contained in:
Mark Vejvoda 2010-12-28 02:57:36 +00:00
parent 33aa51b5b5
commit ba995d1131

View File

@ -503,7 +503,8 @@ Command* Commander::buildCommand(const NetworkCommand* networkCommand) const {
SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s\n",szBuf);
std::string worldLog = world->DumpWorldToLog();
std::string sError = "worldLog = " + worldLog + " " + string(szBuf);
//std::string sError = "worldLog = " + worldLog + " " + string(szBuf);
std::string sError = "Error [#1]: Game is out of sync, please check log files for details.";
throw runtime_error(sError);
}
@ -522,7 +523,8 @@ Command* Commander::buildCommand(const NetworkCommand* networkCommand) const {
SystemFlags::OutputDebug(SystemFlags::debugSystem,"%s\n",szBuf);
std::string worldLog = world->DumpWorldToLog();
std::string sError = "worldLog = " + worldLog + " " + string(szBuf);
//std::string sError = "worldLog = " + worldLog + " " + string(szBuf);
std::string sError = "Error [#2]: Game is out of sync, please check log files for details.";
throw runtime_error(sError);
}