From 216f03ddca04b41dbdc69b40f4d05ea75f3846d0 Mon Sep 17 00:00:00 2001 From: Ty-Omaha Date: Fri, 12 Oct 2018 23:28:04 -0400 Subject: [PATCH] moves boxing attack logs to the ALL preference --- code/modules/martial_arts/brawling.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/martial_arts/brawling.dm b/code/modules/martial_arts/brawling.dm index ec57db72d7b..7869e101505 100644 --- a/code/modules/martial_arts/brawling.dm +++ b/code/modules/martial_arts/brawling.dm @@ -32,7 +32,7 @@ "[A] has hit [D] with a [atk_verb]!") D.apply_damage(damage, STAMINA, affecting, armor_block) - add_attack_logs(A, D, "Melee attacked with [src] (miss/block)", ATKLOG_ALL) + add_attack_logs(A, D, "Melee attacked with [src]", ATKLOG_ALL) if(D.getStaminaLoss() > 50) var/knockout_prob = D.getStaminaLoss() + rand(-15,15) if((D.stat != DEAD) && prob(knockout_prob))