Fix errors when starting multiplayer games

This was SVN commit r9025.
This commit is contained in:
Ykkrosh 2011-03-05 14:30:24 +00:00
parent d3929b6af1
commit 18a2968919

View File

@ -265,7 +265,8 @@ function onTick()
initMain();
g_LoadingState++;
}
else if (g_LoadingState == 2)
{
while (true)
{
var message = Engine.PollNetworkClient();
@ -273,6 +274,7 @@ function onTick()
break;
handleNetMessage(message);
}
}
}
function handleNetMessage(message)