mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Fix server update
This commit is contained in:
parent
c85b99fbae
commit
83c06cd264
|
@ -179,7 +179,7 @@ void CAutoUpdate::CheckUpdates(CMenus *pMenus)
|
|||
#endif
|
||||
dbg_msg("autoupdate", "Error downloading new version");
|
||||
}
|
||||
if (!m_NeedUpdateClient && ReadData.substr(2).compare("UPDATE_SERVER") == 0)
|
||||
if (ReadData.substr(2).compare("UPDATE_SERVER") == 0)
|
||||
{
|
||||
str_format(aBuf, sizeof(aBuf), "Updating DDNet Server to %s", last_version);
|
||||
pMenus->RenderUpdating(aBuf);
|
||||
|
|
Loading…
Reference in a new issue