Skip to content

Commit b0dd35b

Browse files
committed
This
1 parent 812a4e6 commit b0dd35b

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

  • code/modules/mob/living/carbon

code/modules/mob/living/carbon/life.dm

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,14 @@
2121
if(.) //not dead
2222
handle_blood(seconds_per_tick, times_fired)
2323

24-
if(stat != DEAD)
24+
if(stat != DEAD) // still not dead (blood could have changed that)
25+
for(var/key in mind?.addiction_points)
26+
GLOB.addictions[key].process_addiction(src, seconds_per_tick)
2527
handle_brain_damage(seconds_per_tick, times_fired)
2628

2729
if(stat != DEAD)
2830
handle_bodyparts(seconds_per_tick, times_fired)
2931

30-
if(. && !HAS_TRAIT(src, TRAIT_STASIS)) //. == not dead
31-
for(var/key in mind?.addiction_points)
32-
GLOB.addictions[key].process_addiction(src, seconds_per_tick)
33-
3432
if(stat != DEAD)
3533
return TRUE
3634

0 commit comments

Comments
 (0)