From a0a8562dd709e180668bfba8daa7cd55907b8c14 Mon Sep 17 00:00:00 2001 From: Kyani <65205627+EmeraldCandy@users.noreply.github.com> Date: Fri, 1 Mar 2024 07:40:24 -0500 Subject: [PATCH] Makes Weeping Angel Conversion Clearer (#24279) * Update magic_projectiles.dm * Update magic_projectiles.dm actually changed the description to say to kill people * rewords the transformation message Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Removes unnecessary centering Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Removes ALL the center tags --------- Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --- code/modules/projectiles/projectile/magic_projectiles.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/projectile/magic_projectiles.dm b/code/modules/projectiles/projectile/magic_projectiles.dm index c870715dad8..ff7c643a3e7 100644 --- a/code/modules/projectiles/projectile/magic_projectiles.dm +++ b/code/modules/projectiles/projectile/magic_projectiles.dm @@ -325,8 +325,11 @@ S.icon = change.icon if(H.mind) H.mind.transfer_to(S) - to_chat(S, "You are an animated statue. You cannot move when monitored, but are nearly invincible and deadly when unobserved!") - to_chat(S, "Do not harm [firer.name], your creator.") + var/list/messages = list() + messages.Add("You have been transformed into an animated statue.") + messages.Add("You cannot move when monitored, but are nearly invincible and deadly when unobserved! Hunt down those who shackle you.") + messages.Add("Do not harm [firer.name], your creator.") + to_chat(S, chat_box_red(messages.Join("
"))) H = change H.loc = S qdel(src)