Nobody cares about self-harm, bro

This commit is contained in:
TDSSS
2019-09-13 16:13:00 +02:00
parent 7e4b757f81
commit ca0e1628b3
+1 -1
View File
@@ -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)