mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Only try joining tutorial once we have server list
Otherwise quickly pressing enter you end up not joining tutorial
This commit is contained in:
parent
0e003f54ee
commit
6caa29df7c
|
@ -1352,7 +1352,7 @@ int CMenus::Render()
|
|||
|
||||
if(m_Popup == POPUP_NONE)
|
||||
{
|
||||
if(m_JoinTutorial && !Client()->InfoTaskRunning())
|
||||
if(m_JoinTutorial && !Client()->InfoTaskRunning() && !ServerBrowser()->IsGettingServerlist())
|
||||
{
|
||||
m_JoinTutorial = false;
|
||||
const char *pAddr = ServerBrowser()->GetTutorialServer();
|
||||
|
|
Loading…
Reference in a new issue