From 3c40b5f7ae64659c96a7657206bb201e0aac11ee Mon Sep 17 00:00:00 2001 From: Varghh Date: Sun, 17 Sep 2017 02:19:08 -0300 Subject: [PATCH] Changed "Tremble" for "Creaks" --- code/modules/mob/living/carbon/human/emote.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 9b4581e6e16..f85d76175a6 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -76,8 +76,8 @@ else //Everyone else fails, skip the emote attempt return - if("tremble") - if(species.name == "Diona") //Only Dionas can Tremble. + if("creaks") + if(species.name == "Diona") //Only Dionas can Creaks. on_CD = handle_emote_CD() //proc located in code\modules\mob\emote.dm' else //Everyone else fails, skip the emote attempt return @@ -176,10 +176,10 @@ playsound(loc, 'sound/effects/Kidanclack2.ogg', 50, 0) //Credit to DrMinky (freesound.org) for the sound. m_type = 2 - if("tremble") + if("creaks") var/M = handle_emote_param(param) - message = "[src] trembles[M ? " at [M]" : ""]." + message = "[src] creaks[M ? " at [M]" : ""]." playsound(loc, 'sound/voice/dionatalk1.ogg', 50, 0) m_type = 2