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)