Method code for $sys.parse_deny_user()

[Turn off line numbering]
  1: arg value, @args;
  2: var obj;
  3: 
  4: if (value && value[1] == "$") {
  5:     obj = (> $object_lib.to_dbref(value) <);
  6:     if (!obj.is($user))
  7:         throw(~perm, obj.namef('ref) + " is not a user.");
  8: } else {
  9:     obj = (> $user_db.search(value) <);
 10: }
 11: return obj;

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

the Cold Dark