Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 7b0d347

Browse files
unga
1 parent 87760bb commit 7b0d347

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

code/datums/components/rot.dm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@
5454
return
5555

5656
// Wait a bit before decaying
57-
if(world.time - C.timeofdeath < 2 MINUTES)
58-
return
57+
if(!C.reagents.has_reagent(/datum/reagent/gas/healium))
58+
if(world.time - C.timeofdeath < 2 MINUTES)
59+
return
5960

6061
// Properly stored corpses shouldn't create miasma
6162
if(istype(C.loc, /obj/structure/closet/crate/coffin)|| istype(C.loc, /obj/structure/closet/body_bag) || istype(C.loc, /obj/structure/bodycontainer))

code/game/data_huds.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Medical HUD! Basic mode needs suit sensors on.
171171
return
172172
if(tod)
173173
var/tdelta = round(world.time - timeofdeath)
174-
if(tdelta < (DEFIB_TIME_LIMIT))
174+
if(tdelta < (DEFIB_TIME_LIMIT) || reagents.has_reagent(/datum/reagent/gas/healium))
175175
holder.icon_state = "huddefib"
176176
return
177177
holder.icon_state = "huddead"

0 commit comments

Comments
 (0)