From e2e85e3702f3a754f62bde13b30862d343ae9bb7 Mon Sep 17 00:00:00 2001 From: Neerti Date: Sun, 9 Apr 2017 00:24:45 -0400 Subject: [PATCH] Fixes Immortal (to melee) Borgs --- code/modules/mob/living/living_defense.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index c52311820e3..8a49ed8922b 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -168,7 +168,7 @@ var/blocked = run_armor_check(hit_zone, "melee") //If the armor absorbs all of the damage, skip the damage calculation and the blood - if(!soaked > effective_force) + if(!(soaked > effective_force)) standard_weapon_hit_effects(I, user, effective_force, blocked, soaked, hit_zone) if(I.damtype == BRUTE && prob(33)) // Added blood for whacking non-humans too