mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
13 lines
334 B
Plaintext
13 lines
334 B
Plaintext
/**
|
|
* testBadZombieProcess
|
|
* This process is an example of a simple update loop process that hangs.
|
|
*/
|
|
|
|
/datum/controller/process/testZombieProcess/setup()
|
|
name = "Zombie Process"
|
|
schedule_interval = 30 // every 3 seconds
|
|
|
|
/datum/controller/process/testZombieProcess/doWork()
|
|
for (var/i = 0, i < 1000, i++)
|
|
sleep(1)
|
|
scheck() |