Method code for $sys.parse_startup_object()

[Turn on line numbering]
arg value, action, @args;

value = (> $object_lib.to_dbref(value) <);
if (action == 'del) {
    if (!(value in startup['objects]))
        throw(~failed, "The object '" + value + "' is not set, and thus cannot be removed");
    return value;
}
return value;

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark