From 4d981ec635c3fe59c74f9fe458c1a456254d105d Mon Sep 17 00:00:00 2001 From: Cerebulon Date: Mon, 25 Apr 2022 21:02:15 +0100 Subject: [PATCH] Fixes doubled name when deathgasping --- code/modules/emotes/definitions/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/emotes/definitions/human.dm b/code/modules/emotes/definitions/human.dm index ff97908622..c0831322a8 100644 --- a/code/modules/emotes/definitions/human.dm +++ b/code/modules/emotes/definitions/human.dm @@ -11,7 +11,7 @@ . = ..() /decl/emote/human/deathgasp/get_emote_message_3p(var/mob/living/carbon/human/user) - return "USER [user.species.get_death_message(user)]" + return "[user.species.get_death_message(user)]" /decl/emote/human/swish key = "swish"