Skip to content

Commit

Permalink
fix stank (#22846)
Browse files Browse the repository at this point in the history
  • Loading branch information
jupyterkat authored Dec 14, 2024
1 parent 651da8c commit a03fd11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/components/rot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

..()
Expand Down

0 comments on commit a03fd11

Please sign in to comment.