moved process() to datum. made /datum/reagents/ process instead of the containers.

This commit is contained in:
Iamgoofball
2015-04-07 17:13:59 -07:00
parent 54154bec12
commit c06ad7e6b8
16 changed files with 22 additions and 45 deletions

View File

@@ -15,7 +15,7 @@ var/datum/controller/failsafe/Failsafe
Failsafe.process()
/datum/controller/failsafe/proc/process()
/datum/controller/failsafe/process()
spawn(0)
while(1) //more efficient than recursivly calling ourself over and over. background = 1 ensures we do not trigger an infinite loop
if(!master_controller) new /datum/controller/game_controller() //replace the missing master_controller! This should never happen.