/* -*- LPC -*- */
/*
* $Locker: $
* $Id: mountain.c,v 1.1 2000/05/01 03:13:44 jeremy Exp $
*
*
*/
/*
** mountain.c - milestone implementation of /std/outsides/mountain.
*/
inherit "/std/outsides/mountain";
// 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() */