mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-21 07:42:21 +00:00
10 lines
233 B
Plaintext
10 lines
233 B
Plaintext
/datum/controller/process/garbage/setup()
|
|
name = "garbage"
|
|
schedule_interval = 20 // every 2 seconds
|
|
|
|
if(!garbageCollector)
|
|
garbageCollector = new
|
|
|
|
/datum/controller/process/garbage/doWork()
|
|
garbageCollector.process()
|
|
scheck() |