From 3af678fc2373448c60a722397bcf8d4955f8f777 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 6 Apr 2019 17:09:43 -0500 Subject: [PATCH] somehow didn't save? even after a compile check? Nanithefuck --- .../mob/living/carbon/human/species_types/lizardpeople.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm index a02c93e365..c5a64ebd13 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -98,5 +98,5 @@ /datum/species/lizard/ashwalker/on_species_gain(mob/living/carbon/human/C, datum/species/old_species) if((C.dna.features["spines"] != "None" ) && (C.dna.features["tail"] == "None")) //tbh, it's kinda ugly for them not to have a tail yet have floating spines - C.dna.features["tail"] == "Smooth" + C.dna.features["tail"] = "Smooth" return ..()