mob/verb/ContentCopy(obj/o in world,obj/c in world)
c.contents += o.contents
The contents from o.contents dissappear when I try setting c.contents to o.contents.
What I am trying to do it towhere I can have o.contents copied and sent over c.contents, But I cannot think of a way how. Anyone have an solutions as to how I can fix this?
The reason this is happening is because the contents are being moved, not copied. Try the following: