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