#include "path.h" inherit "/std/room"; setup() { set_short("The end of a corridor in "+CITYNAME+"'s town hall.\n"); set_long("You are wandering along a corridor in the town hall " +"of "+CITYNAME+". The corridor continues to the east of " +"here, and there are doors on the southern and western walls.\n"); add_item("corridor", "The corridor runs east to west through the town hall.\n"); add_item("door", "The door is a cheap plywood job, and looks well used.\n"); set_zone("town hall"); set_light(60); add_exit("east", "corridor2", "corridor"); add_exit("south", "emoteroom", "door"); add_exit("west", "complaintsroom", "door"); }