From c7039b06a994a045b5855f28aab76de69eac06c7 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Thu, 9 Jul 2026 16:32:10 +0200 Subject: [PATCH] Fixes goldgrubs leaving floating emissives after dying (#96865) ## About The Pull Request dreamseeker_yU7zcN5nNC ## Changelog :cl: fix: Fixed goldgrubs leaving floating emissives after dying /:cl: --- code/modules/mob/living/basic/lavaland/goldgrub/goldgrub.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/basic/lavaland/goldgrub/goldgrub.dm b/code/modules/mob/living/basic/lavaland/goldgrub/goldgrub.dm index 7422e705104..02273b82b06 100644 --- a/code/modules/mob/living/basic/lavaland/goldgrub/goldgrub.dm +++ b/code/modules/mob/living/basic/lavaland/goldgrub/goldgrub.dm @@ -162,6 +162,11 @@ if(has_emissive) . += emissive_appearance(icon, "[icon_state]_e", src) +/mob/living/basic/mining/goldgrub/death(gibbed) + . = ..() + if (!QDELETED(src) && has_emissive) + update_appearance(UPDATE_OVERLAYS) + /mob/living/basic/mining/goldgrub/baby icon = 'icons/mob/simple/lavaland/lavaland_monsters.dmi' name = "goldgrub baby"