FIXED flag restriction on 'home' is now entirely in restrict.cnf
authorAri Johnson <ari@cobramush.org>
Thu, 12 Apr 2007 18:20:28 +0000 (18:20 +0000)
committerAri Johnson <ari@cobramush.org>
Thu, 12 Apr 2007 18:20:28 +0000 (18:20 +0000)
game/txt/changes/0.73
src/cmds.c

index 240aacf52bf481d5a8d5dcd2b157e333961ae773..4551a6351e139c0d2b85ccbd26c0c88732efd22d 100644 (file)
@@ -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]
 
index 0598e2e14033207bffe67a7669f277ab4f111f03..669a648b13c908dc3f355b8452272daeadfb0ec0 100644 (file)
@@ -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) {