use static for shared member vars

This commit is contained in:
spookerton
2022-04-13 19:41:38 +01:00
parent 757fecf223
commit ee67e174fb
24 changed files with 47 additions and 48 deletions

View File

@@ -136,7 +136,7 @@
var/check_delay = 60 //periodically recheck if we need to rebuild a shield
use_power = USE_POWER_OFF
idle_power_usage = 0
var/global/list/blockedturfs = list(
var/static/list/blockedturfs = list(
/turf/space,
/turf/simulated/floor/outdoors,
)

View File

@@ -3,7 +3,7 @@
/obj/machinery/shield_gen/external
name = "hull shield generator"
var/global/list/blockedturfs = list(
var/static/list/blockedturfs = list(
/turf/space,
/turf/simulated/floor/outdoors,
)