From 49a457691c69e5b69a8ab780af98bbc2900e3554 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Tue, 21 Feb 2023 15:07:02 -0600 Subject: [PATCH] fixes a bad del runtime on bubblegum (#20437) --- .../mob/living/simple_animal/hostile/megafauna/bubblegum.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 258e76bc9d2..4b12a5016a8 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm @@ -298,7 +298,7 @@ Difficulty: Hard if(target.z != z) return FALSE - + var/obj/effect/decal/cleanable/blood/found_bloodpool pools = get_pools(get_turf(target), 5) pools_to_remove = get_pools(get_turf(target), 4) @@ -519,6 +519,7 @@ Difficulty: Hard deathmessage = "Explodes into a pool of blood!" death_sound = 'sound/effects/splat.ogg' true_spawn = FALSE + internal_gps = null // No gps for this lad loot = list(/obj/effect/decal/cleanable/blood/gibs/bubblegum) /mob/living/simple_animal/hostile/megafauna/bubblegum/hallucination/Initialize(mapload)