diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index f715c1bd14f..765367b9f8c 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -275,9 +275,9 @@ temp = getToxLoss() if(temp) if(temp < 25) - msg += "[t_He] looks sick\n" + msg += "[t_He] looks sick.\n" else if(temp < 50) - msg += "[t_He] looks nauseous\n" + msg += "[t_He] looks nauseous.\n" else if (temp < 180) msg += "[t_He] looks very unwell!\n" else @@ -286,7 +286,7 @@ temp = getOxyLoss() if(temp) if(temp < 25) - msg += "[t_He] looks pale\n" + msg += "[t_He] looks pale.\n" else if(temp < 50) msg += "[t_He] Is struggling to breathe!\n" else if (temp < 100) diff --git a/code/modules/mob/living/emote.dm b/code/modules/mob/living/emote.dm index 035d8d0f61b..30139f54bc1 100644 --- a/code/modules/mob/living/emote.dm +++ b/code/modules/mob/living/emote.dm @@ -207,6 +207,14 @@ wing_time = 10 */ +/datum/emote/living/fchuckle + key = "fchuckle" + key_third_person = "fchuckles" + message = "chuckles." + message_param = "chuckles at %t." + emote_type = EMOTE_AUDIBLE + sound = 'sound/f13effects/sunsetsounds/femalechuckle.ogg' + /datum/emote/living/frown key = "frown" key_third_person = "frowns"