Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Space extinguishes fire #16197

Merged
merged 9 commits into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/datums/status_effects/debuffs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@
id = "spacefreeze_light"

/datum/status_effect/spacefreeze/light/tick()
owner.fire_stacks = max(owner.fire_stacks - 6 ,0)
Ldip999 marked this conversation as resolved.
Show resolved Hide resolved
if(owner.stat == DEAD)
return
owner.adjustFireLoss(10)
Expand Down
1 change: 1 addition & 0 deletions code/game/turfs/space.dm
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
if(!spaceman.has_status_effect(debuff_type))
spaceman.apply_status_effect(debuff_type)


Ldip999 marked this conversation as resolved.
Show resolved Hide resolved
/turf/open/space/Exited(atom/movable/leaver, direction)
if(isliving(leaver))
var/step = get_step(src, direction)
Expand Down
Loading