mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-03-28 04:12:39 +00:00
17 lines
383 B
Plaintext
17 lines
383 B
Plaintext
datum/controller/process/networks
|
|
var/tmp/datum/updateQueue/networkUpdateQueue
|
|
|
|
setup()
|
|
name = "Networks"
|
|
schedule_interval = 11
|
|
networkUpdateQueue = new
|
|
|
|
doWork()
|
|
for(var/datum/n in node_networks)
|
|
n:update()
|
|
scheck()
|
|
/*
|
|
var/currentTick = ticks
|
|
for (var/datum/node_network/network in node_networks)
|
|
network.update()
|
|
scheck(currentTick)*/ |