From 4b83110db77daf37c333e0d27988a90b8073ad02 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sun, 30 Jun 2019 05:02:51 -0400 Subject: [PATCH] fuck copypasta; Fixes master not compiling. Stop blindly copy-pasting shit from other codebases without even so much as making sure it compiles. Holy fuck. --- code/modules/mob/living/carbon/human/human_defense.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 429357d826..b42346382f 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -55,11 +55,11 @@ visible_message("[src] deflects the projectile!", "You deflect the projectile!") playsound(src, pick('sound/weapons/bulletflyby.ogg', 'sound/weapons/bulletflyby2.ogg', 'sound/weapons/bulletflyby3.ogg'), 75, 1) if(!mind.martial_art.reroute_deflection) - return BULLET_ACT_BLOCK + return FALSE else P.firer = src P.setAngle(rand(0, 360))//SHING - return BULLET_ACT_FORCE_PIERCE + return FALSE if(!(P.original == src && P.firer == src)) //can't block or reflect when shooting yourself if(P.is_reflectable)