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