From f77de06e6f19cd1b0e37afbe9c8fed003caac548 Mon Sep 17 00:00:00 2001 From: Jacquerel Date: Sat, 26 Aug 2023 01:22:53 +0100 Subject: [PATCH] [no gbp] Watchers don't glow while they are dead (#77910) ## About The Pull Request Removes watcher emissive appearance while dead. ## Why It's Good For The Game Made it look like they were haunted by their own ghost, spooky but inappropriate. ## Changelog :cl: fix: Watchers won't retain an ethereal outline of their wings hovering over their dead body. /:cl: --- code/modules/mob/living/basic/lavaland/watcher/watcher.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/basic/lavaland/watcher/watcher.dm b/code/modules/mob/living/basic/lavaland/watcher/watcher.dm index 327c202a67d..b94ba914298 100644 --- a/code/modules/mob/living/basic/lavaland/watcher/watcher.dm +++ b/code/modules/mob/living/basic/lavaland/watcher/watcher.dm @@ -70,6 +70,8 @@ /mob/living/basic/mining/watcher/update_overlays() . = ..() + if (stat == DEAD) + return . += emissive_appearance(icon, "watcher_emissive", src) /// I love eating diamonds yum