From 598675bac36fb464dcc62652dc05ab3a52d663aa Mon Sep 17 00:00:00 2001 From: Vi3trice <80771500+Vi3trice@users.noreply.github.com> Date: Wed, 1 Dec 2021 12:28:18 -0500 Subject: [PATCH] Fix - Add logs to power gloves (#17177) --- code/_onclick/click_override.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/_onclick/click_override.dm b/code/_onclick/click_override.dm index 7c720643fe8..4b21a48a75b 100644 --- a/code/_onclick/click_override.dm +++ b/code/_onclick/click_override.dm @@ -71,8 +71,10 @@ if(isliving(target_atom)) var/mob/living/L = target_atom if(user.a_intent == INTENT_DISARM) + add_attack_logs(user, L, "shocked and weakened with power gloves") L.Weaken(3) else + add_attack_logs(user, L, "electrocuted with[P.unlimited_power ? " unlimited" : null] power gloves") if(P.unlimited_power) L.electrocute_act(1000, P, flags = SHOCK_NOGLOVES) //Just kill them else