From 533e7a97ef30c6bb3c477b9bdc93eca306761a89 Mon Sep 17 00:00:00 2001 From: truelight Date: Thu, 23 Dec 2004 13:03:48 +0000 Subject: [PATCH] (svn r1244) -Fix: no longer show the current password when 'set company_pw' is called without parameters (technical not possible, sorry DV) --- console_cmds.c | 1 - 1 file changed, 1 deletion(-) diff --git a/console_cmds.c b/console_cmds.c index 11f9dffc05..a0b354329a 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -686,7 +686,6 @@ DEF_CONSOLE_CMD(ConSet) { } else { IConsolePrint(_iconsole_color_default, "'set company_pw' sets a password for your company, so no-one without the correct password can join."); IConsolePrint(_iconsole_color_warning, "Usage: set company_pw \"\". Use * as to set no password."); - IConsolePrintF(_iconsole_color_warning, "Current password is: '%s'", _network_player_info[_local_player].password); } return NULL; }