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

[Skyrat Mirror] [MODULAR] Fixes some pollution runtime spam #114

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Changes from all 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
2 changes: 1 addition & 1 deletion modular_skyrat/modules/pollution/code/pollution.dm
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,6 @@

///Atmos adjacency has been updated on this turf, see if it affects any of our pollutants
/turf/proc/update_adjacent_pollutants()
for(var/turf/open/open_turf as anything in atmos_adjacent_turfs)
for(var/turf/open/open_turf in atmos_adjacent_turfs)
if(open_turf.pollution)
SET_ACTIVE_POLLUTION(open_turf.pollution)
Loading