Let's say I kill somebody... And I want the person I killed (M), to drop all of their contents in their location.. How would I go about doing this?
Thanks in advance^_^
Copyright © 2024 BYOND Software.
All rights reserved.
if(M.contents.len!=0)
for(var/obj/O in M.contents)
O.Move(M.loc)
Simple as that!