1
0
Fork 0

(svn r9727) -Fix (r8546): Company password field in network player info was inverted.

release/0.6
peter1138 2007-04-27 20:50:49 +00:00
parent 6b37ea7b47
commit b02623901a
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ DEF_SERVER_SEND_COMMAND(PACKET_SERVER_COMPANY_INFO)
p->Send_uint16(_network_player_info[player->index].performance);
/* Send 1 if there is a passord for the company else send 0 */
p->Send_bool(StrEmpty(_network_player_info[player->index].password));
p->Send_bool(!StrEmpty(_network_player_info[player->index].password));
for (i = 0; i < NETWORK_VEHICLE_TYPES; i++) {
p->Send_uint16(_network_player_info[player->index].num_vehicle[i]);