From 122f5854d65b575b48500ebdaf32dfb704dd3445 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 4 Jan 2014 12:49:15 +1030 Subject: [PATCH] Fix for oversight of dionaea needing to breathe. --- code/modules/mob/living/carbon/monkey/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/monkey/life.dm b/code/modules/mob/living/carbon/monkey/life.dm index 1b0d0e1064a..8b9f3009d14 100644 --- a/code/modules/mob/living/carbon/monkey/life.dm +++ b/code/modules/mob/living/carbon/monkey/life.dm @@ -22,7 +22,7 @@ if(loc) environment = loc.return_air() - if (stat != DEAD) //still breathing + if (stat != DEAD && !istype(src,/mob/living/carbon/monkey/diona)) //still breathing //First, resolve location and get a breath if(air_master.current_cycle%4==2) //Only try to take a breath every 4 seconds, unless suffocating