/*
// File     :  /domains/Examples/virtual/exaB/exceptions.c
// Comment  :  This deals with things like adding NPCs to .exaB rooms.
// 94-05-20 :  Pallando @ Nightmare wrote it
*/
#include "defines.h"
void modify( string arg )
{
    object room = previous_object();    switch( arg )    {        case "3,1":	    room-> add_exit( "out" ,  "/domains/Examples/virtual/start");
	    break;
    }
}
/* EOF */