diff options
| author | oy <Tom_Adams@web.de> | 2010-11-17 19:05:19 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-11-17 19:05:19 +0100 |
| commit | c45dc374ff585732b51e5a72b8fdf7ce2293c991 (patch) | |
| tree | e579ba8f4100a9a0e84b83471f52f6bf8e35501b /src/engine | |
| parent | 3d3572f845c1d61acd960caf0c28562b9c8681e5 (diff) | |
| download | zcatch-c45dc374ff585732b51e5a72b8fdf7ce2293c991.tar.gz zcatch-c45dc374ff585732b51e5a72b8fdf7ce2293c991.zip | |
decreased the default value for maximum players with same IP a bit
Diffstat (limited to 'src/engine')
| -rw-r--r-- | src/engine/shared/config_variables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/shared/config_variables.h b/src/engine/shared/config_variables.h index 54895b7c..91d6add2 100644 --- a/src/engine/shared/config_variables.h +++ b/src/engine/shared/config_variables.h @@ -65,7 +65,7 @@ MACRO_CONFIG_INT(SvPort, sv_port, 8303, 0, 0, CFGFLAG_SERVER, "Port to use for t MACRO_CONFIG_INT(SvExternalPort, sv_external_port, 0, 0, 0, CFGFLAG_SERVER, "External port to report to the master servers") MACRO_CONFIG_STR(SvMap, sv_map, 128, "dm1", CFGFLAG_SERVER, "Map to use on the server") MACRO_CONFIG_INT(SvMaxClients, sv_max_clients, 8, 1, MAX_CLIENTS, CFGFLAG_SERVER, "Maximum number of clients that are allowed on a server") -MACRO_CONFIG_INT(SvMaxClientsPerIP, sv_max_clients_per_ip, 8, 1, MAX_CLIENTS, CFGFLAG_SERVER, "Maximum number of clients with the same IP that can connect to the server") +MACRO_CONFIG_INT(SvMaxClientsPerIP, sv_max_clients_per_ip, 4, 1, MAX_CLIENTS, CFGFLAG_SERVER, "Maximum number of clients with the same IP that can connect to the server") MACRO_CONFIG_INT(SvHighBandwidth, sv_high_bandwidth, 0, 0, 1, CFGFLAG_SERVER, "Use high bandwidth mode. Doubles the bandwidth required for the server. LAN use only") MACRO_CONFIG_INT(SvRegister, sv_register, 1, 0, 1, CFGFLAG_SERVER, "Register server with master server for public listing") MACRO_CONFIG_STR(SvRconPassword, sv_rcon_password, 32, "", CFGFLAG_SERVER, "Remote console password") |