From 28bc2896b9d30ced78af7d3a70bc86843f5a7ea5 Mon Sep 17 00:00:00 2001 From: "kortgstation@gmail.com" Date: Wed, 14 Dec 2011 09:39:57 +0000 Subject: [PATCH] TG update: Lowered the trigger rate on the teleport armour and the teleport radius (from 8 to 6). git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2681 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/carbon/human/human_defense.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 76171ca71b0..55e53680200 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -59,14 +59,14 @@ emp_act return 1 if(wear_suit && istype(wear_suit, /obj/item/)) var/obj/item/I = wear_suit - if(I.IsShield() && (prob(50 - round(damage / 3)))) + if(I.IsShield() && (prob(35))) visible_message("\red The reactive teleport system flings [src] clear of [attack_text]!") var/list/turfs = new/list() for(var/turf/T in orange(6)) if(istype(T,/turf/space)) continue if(T.density) continue - if(T.x>world.maxx-8 || T.x<8) continue - if(T.y>world.maxy-8 || T.y<8) continue + if(T.x>world.maxx-6 || T.x<6) continue + if(T.y>world.maxy-6 || T.y<6) continue turfs += T if(!turfs.len) turfs += pick(/turf in orange(6)) var/turf/picked = pick(turfs)