From d2e499956f8dbcf3dbca82ed67bf00a77c28dc7e Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Thu, 9 Jun 2022 21:46:27 -0400 Subject: [PATCH] Space dragon despawning empties their contents (#67630) --- 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 8aff83267ea..3cf373ac6e7 100644 --- a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm +++ b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm @@ -141,6 +141,7 @@ if(riftTimer >= maxRiftTimer) to_chat(src, span_boldwarning("You've failed to summon the rift in a timely manner! You're being pulled back from whence you came!")) destroy_rifts() + empty_contents() playsound(src, 'sound/magic/demon_dies.ogg', 100, TRUE) QDEL_NULL(src)