From 68b936f0e18c56b23be18091a2081044fc29b21d Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Mon, 11 Apr 2016 13:46:42 -0400 Subject: [PATCH] Fixes girder animal smash messages --- code/game/objects/structures/girders.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 5d047e3ec2f..1cd49eb9b50 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -17,9 +17,9 @@ if(M.environment_smash >= 1) if(M.environment_smash == 3) ex_act(2) - visible_message("You smash through \the [src].", "[M] smashes through \the [src].") + M.visible_message("[M] smashes through \the [src].", "You smash through \the [src].") else - visible_message("You smash against \the [src].", "[M] smash against \the [src].") + M.visible_message("[M] smashes against \the [src].", "You smash against \the [src].") take_damage(rand(25, 75)) return