From: Ari Johnson Date: Thu, 12 Apr 2007 18:20:28 +0000 (+0000) Subject: FIXED flag restriction on 'home' is now entirely in restrict.cnf X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=e9cc74320bf1fe06850b8a9bb6bef9c4e69f4ed3;p=cobramush.git FIXED flag restriction on 'home' is now entirely in restrict.cnf --- 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) {