From a2a65b9db19431c507c019fd7a1b575e363b59c8 Mon Sep 17 00:00:00 2001 From: Kyep Date: Sun, 12 Feb 2017 04:48:10 -0800 Subject: [PATCH] Admins now get attack logs for punches Right now, admins don't see attack logs for punches. They're recorded in VV and logs, but we don't get 'ATTACK:' notices for them, even with attack logs on. With this PR, that changes. Now, admins with the preference enabled see punches, too. Not disarms, just harmful punches. We'll now be able to notice fights earlier. But, we may see a lot of punch notices. Admins: please use thumbs up/down on this PR according to whether or not you want to see punches in attack logs. --- code/__HELPERS/mobs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 40cc0edbbd5..3cc200ce004 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -250,7 +250,7 @@ Proc for attack log creation, because really why not */ proc/add_logs(mob/user, mob/target, what_done, var/object=null, var/addition=null, var/admin=1, var/print_attack_log = 1)//print_attack_log notifies admins with attack logs on - var/list/ignore=list("shaked", "CPRed", "grabbed", "punched", "disarmed") + var/list/ignore=list("shaked", "CPRed", "grabbed", "disarmed") if(!user) return if(ismob(user))