From 040d8eb3fb2d735793331e40c398f9b224182afa Mon Sep 17 00:00:00 2001 From: Katherine Kiefer Date: Thu, 12 Dec 2024 18:29:47 +1100 Subject: [PATCH] fix stank --- code/datums/components/rot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/rot.dm b/code/datums/components/rot.dm index b37c6773f3f2..60791c3522b8 100644 --- a/code/datums/components/rot.dm +++ b/code/datums/components/rot.dm @@ -66,7 +66,7 @@ return // Also no decay if corpse chilled or not organic/undead - if(C.bodytemperature <= T0C-10 || (!(C.mob_biotypes & (MOB_ORGANIC & MOB_UNDEAD)))) + if(C.bodytemperature <= T0C-10 || (!(C.mob_biotypes & (MOB_ORGANIC | MOB_UNDEAD)))) return ..()