diff options
Diffstat (limited to 'network.c')
-rw-r--r-- | network.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -925,7 +925,7 @@ static void NetworkInitGameInfo(void) _network_game_info.map_height = MapSizeY(); _network_game_info.map_set = _opt.landscape; - _network_game_info.use_password = (_network_server_password[0] == '\0') ? 0 : 1; + _network_game_info.use_password = (_network_server_password[0] != '\0'); // We use _network_client_info[MAX_CLIENT_INFO - 1] to store the server-data in it // The index is NETWORK_SERVER_INDEX ( = 1) |