From f99a200470533cd9c3a09f00dab66e87c7b6cf49 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Thu, 26 Jan 2006 15:55:53 +0000 Subject: (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 ;)) --- network_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network_gui.c') diff --git a/network_gui.c b/network_gui.c index c57654563..11627761b 100644 --- a/network_gui.c +++ b/network_gui.c @@ -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; -- cgit v1.2.3-54-g00ecf