changeset 2886:68cfc701d254 draft

(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 ;))
author Darkvater <Darkvater@openttd.org>
date Thu, 26 Jan 2006 15:55:53 +0000
parents 159d0ba9e395
children cf61b1d01630
files network_gui.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/network_gui.c
+++ b/network_gui.c
@@ -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;