removes atmos history (#67317)

Removes one unused global list and removes the other one that was used only 3 times.
This commit is contained in:
Ghilker
2022-05-27 10:13:42 -04:00
committed by GitHub
parent 6d3095b5c8
commit 9596a1ad2e
4 changed files with 4 additions and 7 deletions
+2 -1
View File
@@ -140,9 +140,10 @@
return
var/list/floor_gases = floor_gas_mixture.gases
var/list/gases_to_check = list(/datum/gas/oxygen, /datum/gas/nitrogen, /datum/gas/carbon_dioxide, /datum/gas/plasma)
var/trace_gases
for(var/id in floor_gases)
if(id in GLOB.hardcoded_gases)
if(id in gases_to_check)
continue
trace_gases = TRUE
break