/*
* clone_object.c
*
* Clone an object by filename, compile if nescessary
*
* (C) Frank Schmidt, Jesus@NorseMUD
*
*/
/* clone an object */
static object clone_object(string path) {
object ob;
if (!(ob=::find_object(path)))
return ::clone_object(compile_object(path));
return ::clone_object(ob);
}