From 585192e12f48cfafeb8e08c77be83942080de25e Mon Sep 17 00:00:00 2001 From: Supermichael777 Date: Tue, 5 Sep 2017 11:54:08 -0400 Subject: [PATCH] Fixes stands not dying with their user (#30402) * We should probably make a rull that you shouldn qdel stulf you didn't make * fixes stupid chasms * I hope this works * () * gahhh * I still think that straight qdel things is going to cause more and more errors * What the fuck --- code/modules/mob/living/simple_animal/guardian/guardian.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm index 248ed1ecb11..40a3c741d54 100644 --- a/code/modules/mob/living/simple_animal/guardian/guardian.dm +++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm @@ -129,7 +129,7 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians update_health_hud() //we need to update all of our health displays to match our summoner and we can't practically give the summoner a hook to do it med_hud_set_health() med_hud_set_status() - if(summoner) + if(!QDELETED(summoner)) if(summoner.stat == DEAD) forceMove(summoner.loc) to_chat(src, "Your summoner has died!")