mud/lib/std/void.c
2020-09-06 05:43:07 -07:00

17 lines
282 B
C

#include <lib.h>
#include ROOMS_H
inherit LIB_ROOM;
void create() {
room::create();
SetAmbientLight(30);
SetShort("the void");
SetLong("The void. Go down to get out.");
SetExits( ([ "down" : ROOM_START ]) );
SetNoModify(1);
}
void init(){
::init();
}