From c1d19836e1491a7e4ef38cefb2fa96c29760f0fe Mon Sep 17 00:00:00 2001
From: S34N <12197162+S34NW@users.noreply.github.com>
Date: Tue, 29 Jun 2021 11:45:35 +0100
Subject: [PATCH] Adds warning to gluttony morph about not being an antag
(#16148)
* chat message about not being an antag
* melts the snowflake
* forgot to do this
* Update code/datums/diseases/transformation.dm
---
code/datums/diseases/transformation.dm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/code/datums/diseases/transformation.dm b/code/datums/diseases/transformation.dm
index fdfafa89314..4098e15e2af 100644
--- a/code/datums/diseases/transformation.dm
+++ b/code/datums/diseases/transformation.dm
@@ -15,6 +15,7 @@
var/list/stage3 = list("You feel utterly plain.")
var/list/stage4 = list("You feel white bread.")
var/list/stage5 = list("Oh the humanity!")
+ var/transformation_text = null
var/new_form = /mob/living/carbon/human
/datum/disease/transformation/stage_act()
@@ -44,6 +45,8 @@
return
if(affected_mob.notransform)
return
+ if(transformation_text)
+ to_chat(affected_mob, transformation_text)
affected_mob.notransform = 1
affected_mob.canmove = 0
affected_mob.icon = null
@@ -243,4 +246,5 @@
stage3 = list("Your appendages are melting away.", "Your limbs begin to lose their shape.")
stage4 = list("You're ravenous.")
stage5 = list("You have become a morph.")
+ transformation_text = "This transformation does NOT make you an antagonist if you were not one already. If you were not an antagonist, you should not eat any steal objectives or the contents of the armory."
new_form = /mob/living/simple_animal/hostile/morph