1
init(){
   ::init();
   { add_action("hut", "enter");}
}

hut(str){
   if(!str){ notify_fail("What are you trying to enter?\n"); return 0; }
   if(str == "hut") {
      this_player()->move_player("hut#players/puppy/s/rm/15.c");
      say(this_player()->query_name()+" enters the hut.\n");
      return 1;}
