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

This commit is contained in:
peter1138 2007-04-27 20:50:49 +00:00
parent 87b07694a5
commit 87b731ead5

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]);