summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-05-04 19:09:25 +0000
committerDarkvater <darkvater@openttd.org>2005-05-04 19:09:25 +0000
commitb12c6bac5787b493b1c5a3a87556a39d921bc2f9 (patch)
treecb53d9b31749571fad59eb9a55def4eeaf78dff0 /console_cmds.c
parenteffca9f6ec77ea88689b1f912efe307aef22f874 (diff)
downloadopenttd-b12c6bac5787b493b1c5a3a87556a39d921bc2f9.tar.xz
(svn r2266) - Feature: it is now possible to start a dedicated server on Win98/95, for the few sadistic geeks that really want to do this (thanks for testing Hackykid). Also fix up another glitch in console output
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/console_cmds.c b/console_cmds.c
index 1bc307a54..7f6a8889f 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -1042,7 +1042,7 @@ DEF_CONSOLE_HOOK(ConHookRconPW)
bool NetworkChangeCompanyPassword(byte argc, char *argv[])
{
if (argc == 0) {
- IConsolePrintF(_iconsole_color_warning, "Current value of 'company_pw': %s", _network_player_info[_local_player].password);
+ IConsolePrintF(_iconsole_color_warning, "Current value for 'company_pw': %s", _network_player_info[_local_player].password);
return true;
}
@@ -1103,7 +1103,7 @@ DEF_CONSOLE_HOOK(ConHookServerAdvertise)
DEF_CONSOLE_CMD(ConProcServerIP)
{
if (argc == 0) {
- IConsolePrintF(_iconsole_color_warning, "Current value of 'server_ip': %s", inet_ntoa(*(struct in_addr *)&_network_server_bind_ip));
+ IConsolePrintF(_iconsole_color_warning, "Current value for 'server_ip': %s", inet_ntoa(*(struct in_addr *)&_network_server_bind_ip));
return true;
}