mob/proc/tester() |
The "problem" I am experiencing is that I'd like to designate a mob's list to have this object be added to, instead of adding it directly to the mob's contents. Instead, two instances of the object are created when I attempt to do so. One is in my mob's contents, and one is in the list that I add the object to.
mob/list/special_objs = new |
My question is, how may I add, upon creation, an object to it's "owner mob"'s specified list, without adding it to the mobs contents?