1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-09-16 09:26:28 +02:00

- updated icons + psd file

- better log messages if server failed to open port
 - 1148 should be fixed. Cleanup in CGameHandler::moveHero()
 - compile fixes
This commit is contained in:
Ivan Savenko
2012-11-15 21:29:22 +00:00
parent c54b983663
commit 8eba824ada
13 changed files with 131 additions and 124 deletions

View File

@@ -751,7 +751,11 @@ void CServerHandler::callServer()
if (result == 0)
tlog1 << "Server closed correctly\n";
else
{
tlog0 << "Error: server failed to close correctly or crashed!\n";
tlog0 << "Check " << logName << " for more info\n";
exit(1);// exit in case of error. Othervice without working server VCMI will hang
}
}
CConnection * CServerHandler::justConnectToServer(const std::string &host, const std::string &port)