// config.h only included here for the defines of START and VOID
// it doesn't need to be included in most rooms.
#include <config.h>
#include <mudlib.h>
inherit ROOM;
void create()
{
::create();
seteuid(getuid());
set( "light", 1 );
set( "short", "The tmi-2 mudlib bug room" );
// NB: "@EndText" should not have spaces after it.
// "EndText" should be on a line of its own (no indentation, tabs or spaces)
set( "long", @EndText
This is the Tmi-2 bugroom. Please post your Tmi-2 mudlib
bugs here, and we'll fix them as soon as possible.
EndText
);
set( "exits", ([
"east" : "/d/TMI/rooms/quad"
]) );
call_other("/d/TMI/boards/archiveboard.c","foo");
}