From f96290ff810a6f0ff502a80708ac40f910b38cf4 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Thu, 4 Feb 2016 18:54:01 -0500 Subject: [PATCH] weakens death EMP --- code/game/gamemodes/blob/theblob.dm | 4 ++-- code/modules/reagents/chemistry/reagents/blob_reagents.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm index d6737d4f26f..3b67eab6a7c 100644 --- a/code/game/gamemodes/blob/theblob.dm +++ b/code/game/gamemodes/blob/theblob.dm @@ -101,10 +101,10 @@ for(var/obj/effect/blob/B in orange(pulse_range, src)) B.Be_Pulsed() if(expand_range) - src.expand(null, 1) + src.expand() for(var/obj/effect/blob/B in orange(expand_range, src)) if(prob(20 - get_dist(get_turf(src), get_turf(B)) * 4)) //expand falls off with range but is faster near the blob causing the expansion - B.expand(null, 1) + B.expand() return /obj/effect/blob/proc/Be_Pulsed() diff --git a/code/modules/reagents/chemistry/reagents/blob_reagents.dm b/code/modules/reagents/chemistry/reagents/blob_reagents.dm index a58b61dd7e5..38dcc9bfd94 100644 --- a/code/modules/reagents/chemistry/reagents/blob_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/blob_reagents.dm @@ -250,7 +250,7 @@ /datum/reagent/blob/electromagnetic_web/death_reaction(obj/effect/blob/B, cause) if(!isnull(cause)) - empulse(B.loc, 2, 4) //less than screen range, so you can stand out of range to avoid it + empulse(B.loc, 2, 3) //less than screen range, so you can stand out of range to avoid it //does brute damage, bonus damage for each nearby blob, and spreads damage out /datum/reagent/blob/synchronous_mesh