Skip to content

Commit

Permalink
Merge pull request #2542 from Merek2/Merek
Browse files Browse the repository at this point in the history
Two Change
  • Loading branch information
Superlagg committed Jun 23, 2023
2 parents 9b24028 + 0374c6a commit bf75ff1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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 += "<B>[t_He] looks nauseous</B>\n"
msg += "<B>[t_He] looks nauseous.</B>\n"
else if (temp < 180)
msg += "<B>[t_He] looks very unwell!</B>\n"
else
Expand All @@ -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 += "<B>[t_He] Is struggling to breathe!</B>\n"
else if (temp < 100)
Expand Down
8 changes: 8 additions & 0 deletions code/modules/mob/living/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit bf75ff1

Please sign in to comment.