/*  -*- LPC -*-  */
/*
 * $Locker:  $
 * $Id: outside.c,v 1.1 2000/05/01 03:14:11 jeremy Exp $
 *
 *
 */
/*
** outside.c - milestone implementation of /std/outside.
*/
inherit "/std/outside";
// My apologies for including .c files.  If anyone else has a better way,
// I'm open to suggestions (the main problem is I need to mask
// query_dest_other() in the base room).
#include "/std/room/inherit/topography/milestone.c"
void create() {
  do_setup++;
  ::create();
  do_setup--;
  if ( !do_setup ) {
    this_object()->setup();
    this_object()->reset();
  }
  // This is a dummy exit so we can print a helpful message
  add_exit(motion_verb, "interroom", "hidden");
  call_out("setup_milestone", 0);
} /* create() */