spawn()
{
while(1)
{
var/time = Proc_GetTime();
winset(src, "default.ClockLabel","text=\"Server Time: [time]\"");
sleep(600); // Update once a minute.
}
}
Problem description:
May not be a problem but I'm trying to track down a potential problem. Is this infinite loop following best practices or is it problematic?