#include <mudlib.h>
inherit ROOM;
void reset(status arg) {
object board;
  if(!present("board")) {
    board = clone_object(BULLETIN_BOARD);
    board -> set_save_file("ob_saves/elder_board");
    board -> set_short("An ELDER notice board");
    move_object(board,this_object());
  }
  if(arg) return;
  set_short("The inner room of town hall");
  set_long(
     "This large chamber is used simply as a place where the Admin \n"+
     "Staff place notes to inform eachother about matters of the   \n"+
     "mudlib. Anyone who is a Senior or greater be aware of what   \n"+
     "is written here.\n");
  set_exits(({
     "room/city/creator/inner1",   "east",
  })); 
  set_weather(2,1,0);
}