From a8758cbf5e2e80ae8ca96163acf57bcc2d3df6f5 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Wed, 25 Jan 2006 19:14:50 +0000 Subject: [PATCH] (svn r3430) - You can of course not join when there are more companies than the maximum set, not the other way around. --- network_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network_server.c b/network_server.c index 8dd6c36c77..ff94a461a4 100644 --- a/network_server.c +++ b/network_server.c @@ -615,7 +615,7 @@ DEF_SERVER_RECEIVE_COMMAND(PACKET_CLIENT_JOIN) // join another company does not affect these values switch (playas) { case 0: /* New company */ - if (_network_game_info.companies_max >= _network_game_info.companies_on) { + if (_network_game_info.companies_on >= _network_game_info.companies_max) { SEND_COMMAND(PACKET_SERVER_ERROR)(cs, NETWORK_ERROR_FULL); return; }