Skip to content

Commit

Permalink
Borer infest fix (#8412)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
AltHit authored Jan 26, 2024
1 parent 0e21cfe commit 1841c0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 1841c0f

Please sign in to comment.