/mob/living/death(gibbed) clear_fullscreens() if(ai_holder) ai_holder.go_sleep() if(nest) //Ew. if(istype(nest, /obj/structure/prop/nest)) var/obj/structure/prop/nest/N = nest N.remove_creature(src) if(istype(nest, /obj/structure/blob/factory)) var/obj/structure/blob/factory/F = nest F.spores -= src //VOREStation Edit Start if(istype(nest, /obj/structure/mob_spawner)) var/obj/structure/mob_spawner/S = nest S.get_death_report(src) //VOREStation Edit End nest = null for(var/s in owned_soul_links) var/datum/soul_link/S = s S.owner_died(gibbed) for(var/s in shared_soul_links) var/datum/soul_link/S = s S.sharer_died(gibbed) . = ..()