Fix gas overlays (#17735)

* Fix gas overlays not working

* Make gas_data a GLOB

* Just get rid of this entire cursed Initialize proc
This commit is contained in:
ShadowLarkens
2025-05-23 17:21:06 +02:00
committed by GitHub
parent 5620a3e720
commit 959b1728d9
18 changed files with 63 additions and 66 deletions
+2 -2
View File
@@ -34,8 +34,8 @@
to_chat(usr, "\[3/5\] - All ZAS Zones removed.")
var/list/unsorted_overlays = list()
for(var/id in gas_data.tile_overlay)
unsorted_overlays |= gas_data.tile_overlay[id]
for(var/id in GLOB.gas_data.tile_overlay)
unsorted_overlays |= GLOB.gas_data.tile_overlay[id]
for(var/turf/simulated/T in world)