(svn r3438) - Fix: first request company data, then general. Yes, it should be the other way around, but with the current network code this doesn't work. So workaround (have some nice promise from TrueLight for fixing ;))

This commit is contained in:
Darkvater 2006-01-26 15:55:53 +00:00
parent fa735869e1
commit bc450bbc9a
1 changed files with 1 additions and 1 deletions

View File

@ -792,8 +792,8 @@ static void NetworkLobbyWindowWndProc(Window *w, WindowEvent *e)
NetworkClientConnectGame(_network_last_host, _network_last_port);
break;
case 10: /* Refresh */
NetworkUDPQueryServer(_network_last_host, _network_last_port); // general data
NetworkQueryServer(_network_last_host, _network_last_port, false); // company info
NetworkUDPQueryServer(_network_last_host, _network_last_port); // general data
break;
} break;