From 180e730be96f9fdd8113bfa7b380f21227ac3634 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 29 Oct 2017 00:46:15 -0500 Subject: [PATCH] Update species.dm --- code/modules/mob/living/carbon/human/species.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index aebd1af9ba..f5b339405d 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -66,6 +66,7 @@ GLOBAL_LIST_EMPTY(roundstart_races) var/breathid = "o2" var/obj/item/organ/brain/mutant_brain = /obj/item/organ/brain + var/obj/item/organ/heart/mutant_heart = /obj/item/organ/heart var/obj/item/organ/eyes/mutanteyes = /obj/item/organ/eyes var/obj/item/organ/ears/mutantears = /obj/item/organ/ears var/obj/item/mutanthands @@ -169,7 +170,7 @@ GLOBAL_LIST_EMPTY(roundstart_races) heart.Remove(C,1) QDEL_NULL(heart) if(should_have_heart && !heart) - heart = new() + heart = new mutant_heart() heart.Insert(C) if(lungs && (replace_current || !should_have_lungs))