From 77bf9cb73d95c9c21ff593c6917e56ee40384c53 Mon Sep 17 00:00:00 2001 From: Spacemanspark Date: Sat, 26 Sep 2015 15:27:06 -0500 Subject: [PATCH 1/2] Gives a special *deathgasp text to IPC's. --- code/modules/mob/living/carbon/human/emote.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 95e60ade252..da652505eff 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -334,8 +334,12 @@ m_type = 2 if ("deathgasp") - message = "[src] seizes up and falls limp, \his eyes dead and lifeless..." - m_type = 1 + if (species.name == "Machine") + message = "[src] gives one shrill beep before falling lifeless..." + m_type = 1 + else + message = "[src] seizes up and falls limp, \his eyes dead and lifeless..." + m_type = 1 if ("giggle") if(miming) From 1ac203fb3dd809bdf5a4abb6102b91b140f6bde3 Mon Sep 17 00:00:00 2001 From: Spacemanspark Date: Sat, 26 Sep 2015 16:06:17 -0500 Subject: [PATCH 2/2] Gives the IPC *deathgasp a bit more flavor. Delicious. --- code/modules/mob/living/carbon/human/emote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index da652505eff..08c7c1732d2 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -335,7 +335,7 @@ if ("deathgasp") if (species.name == "Machine") - message = "[src] gives one shrill beep before falling lifeless..." + message = "[src] gives one shrill beep before falling limp, screen quickly flashing blue before shutting off entirely." m_type = 1 else message = "[src] seizes up and falls limp, \his eyes dead and lifeless..."