(svn r9727) -Fix (r8546): Company password field in network player info was inverted.
--- a/src/network/network_server.cpp Fri Apr 27 20:01:25 2007 +0000
+++ b/src/network/network_server.cpp Fri Apr 27 20:50:49 2007 +0000
@@ -101,7 +101,7 @@
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]);