From ffdccb9383fc990dafbb890fe6a4d721c65d707d Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Tue, 6 Feb 2024 13:25:40 -0500 Subject: [PATCH] fixes bubblegum phase 2 hardmode visual not going away (#23986) --- .../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 978f0d19b10..55cd79a6d15 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm @@ -140,8 +140,8 @@ Difficulty: Hard var/mob/living/carbon/human/H = target H.apply_status_effect(STATUS_EFFECT_BUBBLEGUM_CURSE, src) if(second_life) - H.clear_fullscreen("bubblegum") - H.overlay_fullscreen("bubblegum", /obj/screen/fullscreen/fog, 2) + H.clear_fullscreen("Bubblegum") + H.overlay_fullscreen("Bubblegum", /obj/screen/fullscreen/fog, 2) /mob/living/simple_animal/hostile/megafauna/bubblegum/death(gibbed)