(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 ;))
--- a/network_gui.c Thu Jan 26 13:01:53 2006 +0000
+++ b/network_gui.c Thu Jan 26 15:55:53 2006 +0000
@@ -792,8 +792,8 @@
NetworkClientConnectGame(_network_last_host, _network_last_port);
break;
case 10: /* Refresh */
+ NetworkQueryServer(_network_last_host, _network_last_port, false); // company info
NetworkUDPQueryServer(_network_last_host, _network_last_port); // general data
- NetworkQueryServer(_network_last_host, _network_last_port, false); // company info
break;
} break;