[Server] Allow timers callbacks to restart timers

This commit is contained in:
Koncord 2017-05-08 05:48:04 +08:00
parent d82ed7d0ad
commit 31adb5d715

View file

@ -44,8 +44,8 @@ void Timer::Tick()
if (time - startTime >= targetMsec)
{
Call(args);
end = true;
Call(args);
}
}