mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-18 04:55:27 +00:00
21 lines
392 B
Plaintext
21 lines
392 B
Plaintext
var/datum/subsystem/diseases/SSdisease
|
|
|
|
/datum/subsystem/diseases
|
|
name = "Diseases"
|
|
priority = 7
|
|
|
|
var/list/processing = list()
|
|
|
|
/datum/subsystem/diseases/New()
|
|
NEW_SS_GLOBAL(SSdisease)
|
|
|
|
/datum/subsystem/diseases/stat_entry(msg)
|
|
..("P:[processing.len]")
|
|
|
|
/datum/subsystem/diseases/fire()
|
|
for(var/thing in processing)
|
|
if(thing)
|
|
thing:process()
|
|
continue
|
|
processing.Remove(thing)
|