From cea8b8294ded9b21bf119327ec9bb0075af2f075 Mon Sep 17 00:00:00 2001 From: variableundefined <40092670+variableundefined@users.noreply.github.com> Date: Thu, 1 Nov 2018 07:24:22 +0800 Subject: [PATCH] Add attack log to stun gloves --- code/modules/clothing/gloves/miscellaneous.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 5e1beb969ef..227374bd420 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -96,6 +96,7 @@ playsound(loc, 'sound/weapons/Egloves.ogg', 50, 1, -1) H.do_attack_animation(C) visible_message("[C] has been touched with [src] by [H]!") + add_attack_logs(H, C, "Touched with stun gloves") C.Stun(stun_strength) C.Weaken(stun_strength) C.apply_effect(STUTTER, stun_strength)