From 2febf8ae6004ae8773dbd6dca96d103ae653a864 Mon Sep 17 00:00:00 2001 From: FreeStylaLT Date: Tue, 7 Jun 2016 15:07:10 +0300 Subject: [PATCH] Reduced range to not affect off-screen dudes and dudettes --- code/game/objects/items/devices/traitordevices.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/traitordevices.dm b/code/game/objects/items/devices/traitordevices.dm index cb4f090813c..f05b179e62a 100644 --- a/code/game/objects/items/devices/traitordevices.dm +++ b/code/game/objects/items/devices/traitordevices.dm @@ -44,7 +44,7 @@ effective or pretty fucking useless. return - for(var/mob/living/carbon/human/M in oview(10, user)) + for(var/mob/living/carbon/human/M in oview(7, user)) if(prob(50)) M.Weaken(rand(4,7)) add_logs(M, user, "stunned", src)