inherit "room/room";
object apprentice;
object apprentice1;
reset(arg) {
    if (arg) return;
    add_exit("north","/wizards/siggy/area/unseen/uu21.c");
    add_exit("south","/wizards/siggy/area/unseen/uu26.c");
    add_exit("east","/wizards/siggy/area/unseen/uu24.c");
    add_exit("west","/wizards/siggy/area/unseen/uu22.c");
    short_desc = "A hall";
    long_desc = 
        "This is colorful but boring hall. There are color all the way between white and\n"
        + "black, like red pillars and blue signs and so on. There are three signs pointing\n" 
        + "different directions, east pointing sign says 'Rincewind's', the west pointing\n"
        + "says 'Elswitch's' and the last pointing south says 'The Great Leader of the.\n"
        + "university, Jehu'.\n";
    if(!apprentice) {
    apprentice = clone_object("/wizards/siggy/area/unseen/wizap.c");
    move_object(apprentice, this_object());
    }
    if(!apprentice1) {
    apprentice1 = clone_object("/wizards/siggy/area/unseen/wizap.c");
    move_object(apprentice1, this_object());
    }
}




