(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 ;))
authorDarkvater
Thu, 26 Jan 2006 15:55:53 +0000
changeset 2886 6a1f13220989
parent 2885 fc5297214b36
child 2887 810e555d5249
(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
--- 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;