From e9a66eb6eca8abb1a38d2177efa7c0b3e623ffac Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 26 Jun 2017 07:02:52 -0400 Subject: [PATCH] Fixes resin attack message (#28789) --- code/game/objects/effects/effect_system/effects_foam.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/effects/effect_system/effects_foam.dm b/code/game/objects/effects/effect_system/effects_foam.dm index 7e937c3a1c6..002e988dccb 100644 --- a/code/game/objects/effects/effect_system/effects_foam.dm +++ b/code/game/objects/effects/effect_system/effects_foam.dm @@ -229,7 +229,7 @@ /obj/structure/foamedmetal/attack_hand(mob/user) user.changeNext_move(CLICK_CD_MELEE) user.do_attack_animation(src, ATTACK_EFFECT_PUNCH) - to_chat(user, "You hit the metal foam but bounce off it!") + to_chat(user, "You hit [src] but bounce off it!") playsound(src.loc, 'sound/weapons/tap.ogg', 100, 1) /obj/structure/foamedmetal/CanPass(atom/movable/mover, turf/target, height=1.5)