From a03fd11aea14f392a9d70a67fde8639f80e71351 Mon Sep 17 00:00:00 2001 From: CoffeeKat <56778689+jupyterkat@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:26:40 +1100 Subject: [PATCH] fix stank (#22846) --- 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 ..()