summaryrefslogtreecommitdiff
path: root/src/network/network_udp.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-24 22:18:46 +0000
committerrubidium <rubidium@openttd.org>2007-06-24 22:18:46 +0000
commitce91598e3ce045fcc3aeed3a3f07821d96605e9f (patch)
tree6751f35de347591e01afbc331f471c81e3ccbf7e /src/network/network_udp.cpp
parent7f8535526b2ba0580f7a241978c8344c9b155355 (diff)
downloadopenttd-ce91598e3ce045fcc3aeed3a3f07821d96605e9f.tar.xz
(svn r10313) -Fix (r8546): value for password "protected" was sent toggled for UDP packets, i.e. unpassworded companies showed up passworded and vice versa.
Diffstat (limited to 'src/network/network_udp.cpp')
-rw-r--r--src/network/network_udp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/network_udp.cpp b/src/network/network_udp.cpp
index eeef5f5a7..496604f3b 100644
--- a/src/network/network_udp.cpp
+++ b/src/network/network_udp.cpp
@@ -124,7 +124,7 @@ DEF_UDP_RECEIVE_COMMAND(Server, PACKET_UDP_CLIENT_DETAIL_INFO)
packet.Send_uint16(_network_player_info[player->index].performance);
/* Send 1 if there is a passord for the company else send 0 */
- packet.Send_bool (StrEmpty(_network_player_info[player->index].password));
+ packet.Send_bool (!StrEmpty(_network_player_info[player->index].password));
for (i = 0; i < NETWORK_VEHICLE_TYPES; i++)
packet.Send_uint16(_network_player_info[player->index].num_vehicle[i]);