From 38aa220e6ae5f456501ec3197a60582ae25af04e Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Thu, 26 Aug 2021 04:02:22 +0200 Subject: [PATCH] no nullijng allowed --- code/modules/mob/living/simple_animal/hostile/space_dragon.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm index 2fd7d02e24..9ee02e7896 100644 --- a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm +++ b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm @@ -123,6 +123,7 @@ to_chat(src, "You've failed to summon the rift in a timely manner! You're being pulled back from whence you came!") destroy_rifts() playsound(src, 'sound/magic/demon_dies.ogg', 100, TRUE) + empty_contents() QDEL_NULL(src) /mob/living/simple_animal/hostile/space_dragon/AttackingTarget()