Skip to content

Commit

Permalink
Fire Immunity = Pyrogen Melting Stacks Immunity (#16928)
Browse files Browse the repository at this point in the history
  • Loading branch information
Runian authored Jan 18, 2025
1 parent 74667ae commit fddf3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/status_effects/debuffs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@
vis_flags = VIS_INHERIT_DIR | VIS_INHERIT_ID | VIS_INHERIT_PLANE

/datum/status_effect/stacking/melting_fire/on_creation(mob/living/new_owner, stacks_to_apply)
if(new_owner.status_flags & GODMODE || new_owner.stat == DEAD)
if(new_owner.status_flags & GODMODE || new_owner.stat == DEAD || new_owner.soft_armor?.getRating(FIRE) >= 100)
qdel(src)
return
. = ..()
Expand Down

0 comments on commit fddf3c9

Please sign in to comment.