From ca0e1628b3008d3df806525d2c60739499ff0468 Mon Sep 17 00:00:00 2001 From: TDSSS <32099540+TDSSS@users.noreply.github.com> Date: Fri, 13 Sep 2019 16:13:00 +0200 Subject: [PATCH] Nobody cares about self-harm, bro --- 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 4ecfe95d24c..b7221f581b9 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -298,7 +298,7 @@ This is always put in the attack log. loglevel = ATKLOG_FEW else if(istype(user) && !user.ckey && !target.ckey) // Attacks between NPCs are only shown to admins with ATKLOG_ALL loglevel = ATKLOG_ALL - else if(!user.ckey || !target.ckey) // Player v NPC combat is de-prioritized. + else if(!user.ckey || !target.ckey || (user.ckey == target.ckey)) // Player v NPC combat is de-prioritized. Also no self-harm, nobody cares loglevel = ATKLOG_ALMOSTALL else var/area/A = get_area(target)