NAME destruct - destruct an object SYNOPSIS status destruct() status destruct(object ob) DESCRIPTION This function destroys the current object. RETURNS Returns 1 if the destruction failed, 0 if it worked. CAVE EAT When an object is destructed the weight count of the surrounding object is not automatically updated. The correct way of doing things is: transfer(this_object(), "/rum/void"); destruct(); When called with the second syntax, and ob != this_object() then valid_destruct in the master object is called to determine if this is an allowed operation or not. SEE ALSO clone_object, transfer