From 74338c9b71df54f01dea7b6050cd8b0302409ad3 Mon Sep 17 00:00:00 2001 From: Dahlular <55758850+Dahlular@users.noreply.github.com> Date: Tue, 15 Nov 2022 02:03:57 -0700 Subject: [PATCH] If we're going PvE, we need this --- hyperstation/code/obj/ZaoCorp/Zweihander.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hyperstation/code/obj/ZaoCorp/Zweihander.dm b/hyperstation/code/obj/ZaoCorp/Zweihander.dm index e79fa473e..bc3d7256a 100644 --- a/hyperstation/code/obj/ZaoCorp/Zweihander.dm +++ b/hyperstation/code/obj/ZaoCorp/Zweihander.dm @@ -206,9 +206,9 @@ if(attack_type == UNARMED_ATTACK) final_block_chance = 100 //How easy is it to block a hand? if(attack_type == PROJECTILE_ATTACK) - final_block_chance = 80 //With the suit it helps against bullets + final_block_chance = 95 //With the suit it helps against bullets if(attack_type == THROWN_PROJECTILE_ATTACK) - final_block_chance = 50 //Sometimes you may be off guard + final_block_chance = 100 //Sometimes you may be off guard if(attack_type == LEAP_ATTACK) final_block_chance = 100 //BRACE return ..() @@ -218,4 +218,4 @@ "You accidentally hit yourself with [src]!") SEND_SIGNAL(user, COMSIG_LIVING_MINOR_SHOCK) user.Knockdown(stunforce*3) - playsound(get_turf(src), 'sound/effects/woodhit.ogg', 75, 1, -1) \ No newline at end of file + playsound(get_turf(src), 'sound/effects/woodhit.ogg', 75, 1, -1)