From 1841c0f127bf5d8c043e0764353d65062e430c2d Mon Sep 17 00:00:00 2001 From: AltHit <52506929+AltHit@users.noreply.github.com> Date: Fri, 26 Jan 2024 21:36:39 +0300 Subject: [PATCH] Borer infest fix (#8412) * Update borer_powers.dm Added check for being a monkey. That's about it * Update borer_powers.dm Actually checked on more than one mob this time --- code/modules/mob/living/simple_animal/borer/borer_powers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/borer/borer_powers.dm b/code/modules/mob/living/simple_animal/borer/borer_powers.dm index 31e9a5ac093..6b79b78e9d0 100644 --- a/code/modules/mob/living/simple_animal/borer/borer_powers.dm +++ b/code/modules/mob/living/simple_animal/borer/borer_powers.dm @@ -60,7 +60,7 @@ if(!M || !Adjacent(M) || !iscarbon(M)) return - if(ishuman(M) && (!M.mind || !M.client)) + if((ishuman(M) && !M.isMonkey()) && (!M.mind || !M.client)) to_chat(src, SPAN_WARNING("Host's body is in a state of hibernation, you are afraid to be crushed when they roll over in their sleep!")) return if(M.has_brain_worms())