From 74c0401832510b1eaa2ffad6eeb8cc412fe6398e Mon Sep 17 00:00:00 2001 From: Wallemations <66052067+Wallemations@users.noreply.github.com> Date: Thu, 27 Aug 2020 20:00:56 -0400 Subject: [PATCH] uses initial() for verbs --- code/modules/surgery/organs/tongue.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/surgery/organs/tongue.dm b/code/modules/surgery/organs/tongue.dm index a91811fd5db..f28089272ef 100644 --- a/code/modules/surgery/organs/tongue.dm +++ b/code/modules/surgery/organs/tongue.dm @@ -339,11 +339,11 @@ /obj/item/organ/tongue/tied/Remove(mob/living/carbon/M, special = 0) ..() - M.verb_ask = "asks" - M.verb_exclaim = "exclaims" - M.verb_whisper = "whispers" - M.verb_sing = "sings" - M.verb_yell = "yells" + M.verb_ask = initial(verb_ask) + M.verb_exclaim = initial(verb_exclaim) + M.verb_whisper = initial(verb_whisper) + M.verb_sing = initial(verb_sing) + M.verb_yell = initial(verb_yell) REMOVE_TRAIT(M, TRAIT_SIGN_LANG, "tongue") //People who are Ahealed get "cured" of their sign language-having ways. If I knew how to make the tied tongue persist through aheals, I'd do that. //Thank you Jwapplephobia for helping me with the literal hellcode below