From 8be2f8ffb77061a3b5b59106b8d2372b347db6ed Mon Sep 17 00:00:00 2001 From: Ryan784 Date: Sat, 9 Jan 2016 12:39:32 -0500 Subject: [PATCH] Syndicate Pen update 2.0 Removing any chance of getting 'lucky' and pushing a pen through armor. No way. --- code/modules/paperwork/pen.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 4486ac8c..ec6c4eca 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -84,7 +84,7 @@ if(istype(M,/mob/living/carbon/human)) var/mob/living/carbon/human/H = M var/target_zone = ran_zone(check_zone(user.zone_sel.selecting, H)) - if(H.getarmor(target_zone, "melee") > 5 && prob(50)) + if(H.getarmor(target_zone, "melee") > 5) user << "\red You can't find a way to use that through [M]'s armor." return @@ -119,7 +119,7 @@ if(istype(M,/mob/living/carbon/human)) var/mob/living/carbon/human/H = M var/target_zone = ran_zone(check_zone(user.zone_sel.selecting, H)) - if(H.getarmor(target_zone, "melee") > 5 && prob(50)) + if(H.getarmor(target_zone, "melee") > 5) user << "\red You can't find a way to use that through [M]'s armor." return