lpmud/mudlib/
lpmud/mudlib/doc/
lpmud/mudlib/doc/LPC/
lpmud/mudlib/log/
lpmud/mudlib/players/
lpmud/mudlib/room/maze1/
lpmud/mudlib/room/sub/
/*
 * This is a singularity. It is used when an error occurs in the
 * game driver, as a stand in for other objects.
 */

short() {
    return "A singularity";
}

long() {
    write("This is a singularity. It is created in the space from\n");
    write("another creation failure.\n");
    write("if you find it somewhere, just being here, call a wizard,\n");
    write("and he will remove it. The singularity has no affects on the\n");
    write("game, otherwise.\n");
}

id(str) {
    return str == "singularity";
}

get() { return 1; }

query_value() { return 1; }