summaryrefslogtreecommitdiff
path: root/src/console_cmds.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-10-14 19:48:48 +0000
committerrubidium <rubidium@openttd.org>2007-10-14 19:48:48 +0000
commitad128da5262c3bfc3d78c8f747107df9c5fa2716 (patch)
treea52cf19b5380bc2d5985bdb5d72e5390aca2dce0 /src/console_cmds.cpp
parent198ea304adbe0c0a1d94f13d1d229931f8ce6439 (diff)
downloadopenttd-ad128da5262c3bfc3d78c8f747107df9c5fa2716.tar.xz
(svn r11260) -Codechange: replace a magic number by a less magic enumified constant. Patch by ammler.
Diffstat (limited to 'src/console_cmds.cpp')
-rw-r--r--src/console_cmds.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp
index 7030d9a8e..22047aaa6 100644
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -593,10 +593,8 @@ DEF_CONSOLE_CMD(ConServerInfo)
DEF_CONSOLE_HOOK(ConHookValidateMaxClientsCount)
{
- /* XXX - hardcoded, string limiation -- TrueLight
- * XXX - also see network.c:NetworkStartup ~1356 */
- if (_network_game_info.clients_max > 10) {
- _network_game_info.clients_max = 10;
+ if (_network_game_info.clients_max > MAX_CLIENTS) {
+ _network_game_info.clients_max = MAX_CLIENTS;
IConsoleError("Maximum clients out of bounds, truncating to limit.");
}