From f75ef8d396bb025309a3bc5bb111f65daca326a2 Mon Sep 17 00:00:00 2001 From: Ari Johnson Date: Thu, 12 Apr 2007 18:20:28 +0000 Subject: [PATCH] FIXED flag restriction on 'home' is now entirely in restrict.cnf (cherry picked from commit e9cc74320bf1fe06850b8a9bb6bef9c4e69f4ed3) --- game/txt/changes/0.73 | 1 + src/cmds.c | 5 +---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/game/txt/changes/0.73 b/game/txt/changes/0.73 index 240aacf..4551a63 100644 --- a/game/txt/changes/0.73 +++ b/game/txt/changes/0.73 @@ -192,4 +192,5 @@ CobraMUSH Version 0.73 * Added nwho(), xwho(), xmwho(), xwhoid(), xmwhoid(). [RLB] * Added mwhoid(), lwhoid(). [RLB] * make distclean is now more throughough. [RLB] + * FIXED flag restriction on 'home' is now entirely in restrict.cnf [AEJ] diff --git a/src/cmds.c b/src/cmds.c index 0598e2e..669a648 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -489,10 +489,7 @@ COMMAND (cmd_huh_command) { COMMAND (cmd_home) { if (!Mobile(player)) return; - if (Fixed(player)) - notify(player, T("You can't do that IC!")); - else - do_move(player, "home", MOVE_NORMAL); + do_move(player, "home", MOVE_NORMAL); } COMMAND (cmd_kick) { -- 2.30.2