From 8b8d1fc28f631c40fca99ebbceccdabacd4571ca Mon Sep 17 00:00:00 2001 From: StrangeWeirdKitten <95130227+StrangeWeirdKitten@users.noreply.github.com> Date: Sat, 9 Jul 2022 12:55:29 -0600 Subject: [PATCH] Fixes Bubblegum (#68266) * Update bubblegum.dm * Update code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm Co-authored-by: ShizCalev * Ok Ok Co-authored-by: ShizCalev --- .../mob/living/simple_animal/hostile/megafauna/bubblegum.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm index bdb1e8ac93d..7348b99dc6d 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm @@ -133,8 +133,8 @@ Difficulty: Hard else hallucination_charge_surround.Trigger(target = target) -/mob/living/simple_animal/hostile/megafauna/bubblegum/proc/get_mobs_on_blood(mob/target) - var/list/targets = list(target) +/mob/living/simple_animal/hostile/megafauna/bubblegum/proc/get_mobs_on_blood() + var/list/targets = ListTargets() . = list() for(var/mob/living/L in targets) var/list/bloodpool = get_bloodcrawlable_pools(get_turf(L), 0)