mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-07-12 17:42:19 +01:00
13 lines
273 B
Plaintext
13 lines
273 B
Plaintext
datum/controller/process/chemistry
|
|
var/tmp/datum/updateQueue/chemistryUpdateQueue
|
|
|
|
setup()
|
|
name = "Chemistry"
|
|
schedule_interval = 10
|
|
chemistryUpdateQueue = new
|
|
|
|
doWork()
|
|
for(var/datum/d in active_reagent_holders)
|
|
d:process_reactions()
|
|
scheck()
|