mirror of
https://github.com/glest/glest-source.git
synced 2025-02-25 04:02:30 +01:00
allow player status message in game lobby
This commit is contained in:
parent
462524bcae
commit
7a40e78b6a
@ -954,6 +954,15 @@ void ClientInterface::updateLobby() {
|
||||
}
|
||||
break;
|
||||
|
||||
case nmtLoadingStatusMessage:
|
||||
{
|
||||
NetworkMessageLoadingStatus networkMessageLoadingStatus(nmls_NONE);
|
||||
if(receiveMessage(&networkMessageLoadingStatus)) {
|
||||
if(SystemFlags::getSystemSettingType(SystemFlags::debugNetwork).enabled) SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s] Line: %d\n",extractFileFromDirectoryPath(__FILE__).c_str(),__FUNCTION__,__LINE__);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
{
|
||||
string sErr = string(extractFileFromDirectoryPath(__FILE__).c_str()) + "::" + string(__FUNCTION__) + " Unexpected network message: " + intToStr(networkMessageType);
|
||||
|
Loading…
x
Reference in New Issue
Block a user