Method code for $sys.parse_startup_object()

[Turn off line numbering]
  1: arg value, action, @args;
  2: 
  3: value = (> $object_lib.to_dbref(value) <);
  4: if (action == 'del) {
  5:     if (!(value in startup['objects]))
  6:         throw(~failed, "The object '" + value + "' is not set, and thus cannot be removed");
  7:     return value;
  8: }
  9: return value;

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

the Cold Dark