From 4688ad5647264b6206c4ba5a2a8979af4f912308 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Sun, 26 Oct 2025 08:58:14 -0400 Subject: [PATCH] Fixes migos dodging while dead (#30787) --- code/modules/mob/living/basic/nether_mobs/migo.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/nether_mobs/migo.dm b/code/modules/mob/living/basic/nether_mobs/migo.dm index 92381f831cf..87a502cfe42 100644 --- a/code/modules/mob/living/basic/nether_mobs/migo.dm +++ b/code/modules/mob/living/basic/nether_mobs/migo.dm @@ -181,7 +181,7 @@ make_migo_sound() /mob/living/basic/netherworld/migo/Move(atom/newloc, dir, step_x, step_y) - if(!ckey && prob(dodge_prob) && moving_diagonally == 0 && isturf(loc) && isturf(newloc)) + if(!ckey && prob(dodge_prob) && moving_diagonally == 0 && isturf(loc) && isturf(newloc) && stat != DEAD) return dodge(newloc, dir) else return ..()