some more globals (#19098)

* some more globals

* .
This commit is contained in:
Kashargul
2026-01-29 18:21:58 +01:00
committed by GitHub
parent 24e68536bc
commit fdfb49012b
50 changed files with 164 additions and 176 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
var/list/blob_nodes = list()
GLOBAL_LIST_EMPTY(blob_nodes)
/obj/structure/blob/node
name = "blob node"
@@ -11,12 +11,12 @@ var/list/blob_nodes = list()
/obj/structure/blob/node/Initialize(mapload, new_overmind)
. = ..()
blob_nodes += src
GLOB.blob_nodes += src
START_PROCESSING(SSobj, src)
update_icon()
/obj/structure/blob/node/Destroy()
blob_nodes -= src
GLOB.blob_nodes -= src
STOP_PROCESSING(SSobj, src)
return ..()