From 6410c942445eef8096c08cc75e303764dcac5b62 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 5 Aug 2022 20:58:27 +0100 Subject: [PATCH] Update dullahan.dm --- code/datums/components/dullahan.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/dullahan.dm b/code/datums/components/dullahan.dm index 2c34c3d1d1..d362af99e4 100644 --- a/code/datums/components/dullahan.dm +++ b/code/datums/components/dullahan.dm @@ -170,7 +170,7 @@ // work out what organs to give them based on their species if(ishuman(parent)) var/mob/living/carbon/human/H = parent - var/obj/item/organ/eyes/new_eyes = new H.dna.species.mutant_eyes() + var/obj/item/organ/eyes/new_eyes = new H.dna.species.mutanteyes() var/obj/item/organ/brain/new_brain = new H.dna.species.mutant_brain() var/obj/item/organ/eyes/old_eyes = H.getorganslot(ORGAN_SLOT_EYES) var/obj/item/organ/brain/old_brain = H.getorganslot(ORGAN_SLOT_BRAIN)