From 5f128447f527d757148b2750b6f4bef2bc21fca1 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Wed, 1 Apr 2020 02:21:50 +0200 Subject: [PATCH] Update guardian.dm --- code/modules/mob/living/simple_animal/guardian/guardian.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm index b90a36d575..41c56169d0 100644 --- a/code/modules/mob/living/simple_animal/guardian/guardian.dm +++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm @@ -112,9 +112,9 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians attacktext = "bites" attack_sound = 'sound/weapons/bite.ogg' recolorentiresprite = TRUE - if(!recolorentiresprite) - cooloverlay = mutable_appearance(icon, theme) - add_overlay(cooloverlay) + if(!recolorentiresprite) //we want this to proc before stand logs in, so the overlay isnt gone for some reason + cooloverlay = mutable_appearance(icon, theme) + add_overlay(cooloverlay) /mob/living/simple_animal/hostile/guardian/Login() //if we have a mind, set its name to ours when it logs in ..()