mob
verb
Clone()
set category="Spells"
var/mob/clone=new(src.loc)
clone.icon=src.icon
clone.overlays=src.overlays
clone.currenthp = 1
if(clone.currenthp<=0)
del clone
Problem description:The problem with this section of code is, once the clone has been killed it is not deleted, instead it is sent to the location of 6,6,2. Im not sure what I have done wrong and any help will be greatly appreciated.