From 2c26c3bdec1e252b15fd7b5e200c43770a89628f Mon Sep 17 00:00:00 2001 From: Seris02 <49109742+Seris02@users.noreply.github.com> Date: Sat, 28 Dec 2019 21:11:17 +0800 Subject: [PATCH] does the fix? --- .../mob/living/simple_animal/hostile/megafauna/hierophant.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm index cc710ad8ce..d8e281e73b 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm @@ -596,11 +596,13 @@ Difficulty: Normal var/bursting = FALSE //if we're bursting and need to hit anyone crossing us var/list/nohurt -/obj/effect/temp_visual/hierophant/blast/Initialize(mapload, new_caster, friendly_fire, list/only_hit_once, list/donthurt = list()) +/obj/effect/temp_visual/hierophant/blast/Initialize(mapload, new_caster, friendly_fire, list/only_hit_once, list/donthurt) . = ..() if(only_hit_once) hit_things = only_hit_once friendly_fire_check = friendly_fire + if (!donthurt) + donthurt = list() nohurt = donthurt if(new_caster) hit_things += new_caster