mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-30 10:06:42 +00:00
[Server] Allow timers callbacks to restart timers
This commit is contained in:
parent
d82ed7d0ad
commit
31adb5d715
1 changed files with 1 additions and 1 deletions
|
@ -44,8 +44,8 @@ void Timer::Tick()
|
||||||
|
|
||||||
if (time - startTime >= targetMsec)
|
if (time - startTime >= targetMsec)
|
||||||
{
|
{
|
||||||
Call(args);
|
|
||||||
end = true;
|
end = true;
|
||||||
|
Call(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue