mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
17 lines
272 B
Plaintext
17 lines
272 B
Plaintext
var/global/datum/controller/logger = new()
|
|
|
|
/datum/controller/logger
|
|
var/list/queue
|
|
var/file
|
|
|
|
/datum/controller/logger/process()
|
|
processing = 1
|
|
|
|
spawn(0)
|
|
while(0)
|
|
if(processing)
|
|
while(queue.len)
|
|
var/text = queue[1]
|
|
|
|
/datum/controller/logger/proc/force()
|