summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-12-23 12:26:19 +0000
committerrubidium <rubidium@openttd.org>2008-12-23 12:26:19 +0000
commitb4f74d2e011b4186cace50c2a49e75ae9799d4e0 (patch)
treeebd80839e8c9aa6f9d6f3c723dc76afcdb076693
parentc1b2f17bc8dcc519433b6d26b1de81a1e032572c (diff)
downloadopenttd-b4f74d2e011b4186cace50c2a49e75ae9799d4e0.tar.xz
(svn r14726) -Fix (r14720): making new companies in network kinda failed...
-rw-r--r--src/company_cmd.cpp2
-rw-r--r--src/network/network_client.cpp7
2 files changed, 6 insertions, 3 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp
index 8a36945a6..860246f5c 100644
--- a/src/company_cmd.cpp
+++ b/src/company_cmd.cpp
@@ -813,7 +813,7 @@ CommandCost CmdCompanyCtrl(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
/* Has the network client a correct ClientIndex? */
if (!(flags & DC_EXEC)) return CommandCost();
NetworkClientInfo *ci = NetworkFindClientInfoFromIndex(cid);
- if (ci != NULL) return CommandCost();
+ if (ci == NULL) return CommandCost();
/* Delete multiplayer progress bar */
DeleteWindowById(WC_NETWORK_STATUS_WINDOW, 0);
diff --git a/src/network/network_client.cpp b/src/network/network_client.cpp
index 9c3e2639a..f4d49539e 100644
--- a/src/network/network_client.cpp
+++ b/src/network/network_client.cpp
@@ -420,8 +420,11 @@ DEF_CLIENT_RECEIVE_COMMAND(PACKET_SERVER_CLIENT_INFO)
}
// We don't have this client_id yet, find an empty client_id, and put the data there
- ci = NetworkFindClientInfoFromClientID(INVALID_CLIENT_ID);
- if (ci != NULL) {
+ for (int i = 0; i < MAX_CLIENT_SLOTS; i++) {
+ ci = GetNetworkClientInfo(i);
+ if (!ci->IsValid()) break;
+ }
+ if (ci != GetNetworkClientInfo(MAX_CLIENT_SLOTS)) {
ci->client_id = client_id;
ci->client_playas = playas;