diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index de9a4e2b508..e4c8f64b9fe 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -142,12 +142,13 @@ var/list/mechtoys = list( New() ordernum = rand(1,9000) + + //Supply shuttle ticker - handles supply point regenertion and shuttle travelling between centcomm and the station + proc/process() for(var/typepath in (typesof(/datum/supply_packs) - /datum/supply_packs)) var/datum/supply_packs/P = new typepath() supply_packs[P.name] = P - //Supply shuttle ticker - handles supply point regenertion and shuttle travelling between centcomm and the station - proc/process() spawn(0) set background = 1 while(1) diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm index 45ee9770318..af0e881a621 100644 --- a/code/modules/power/singularity/collector.dm +++ b/code/modules/power/singularity/collector.dm @@ -1,5 +1,5 @@ //This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 -var/global/list/obj/machinery/power/rad_collector/rad_collectors = list() +var/global/list/rad_collectors = list() /obj/machinery/power/rad_collector name = "Radiation Collector Array" @@ -19,8 +19,7 @@ var/global/list/obj/machinery/power/rad_collector/rad_collectors = list() /obj/machinery/power/rad_collector/New() ..() - spawn(5) - rad_collectors += src + rad_collectors += src /obj/machinery/power/rad_collector/Del() rad_collectors -= src