(svn r16175) -Fix: Disable the join button in the multiplayer lobby for AI companies, since joining an AI company is not possible.

This commit is contained in:
yexo
2009-04-26 19:48:42 +00:00
parent bc8f31da4e
commit c8ce3f7ef0
3 changed files with 4 additions and 1 deletions

View File

@@ -1344,6 +1344,8 @@ void NetworkSocketHandler::Send_CompanyInformation(Packet *p, const Company *c,
for (int i = 0; i < NETWORK_STATION_TYPES; i++) {
p->Send_uint16(stats->num_station[i]);
}
p->Send_bool(c->is_ai);
}
/**