From 3ebacb5459ee977a793dbf31a8d1711b8b1aa111 Mon Sep 17 00:00:00 2001 From: Gatchapod <20936555+Gatchapod@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:35:09 +0200 Subject: [PATCH] HRD-MDE Legion drops loot now (#30589) Co-authored-by: Gatchapod --- .../mob/living/simple_animal/hostile/megafauna/legion.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm index fbae6215005..08e43832e26 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm @@ -88,7 +88,7 @@ Difficulty: Medium /mob/living/simple_animal/hostile/megafauna/legion/drop_loot() for(var/mob/living/simple_animal/hostile/megafauna/legion/other in GLOB.mob_list) - if(other != src) + if(other != src && other.stat != DEAD) return ..()