Revert change

This commit is contained in:
Kamron Batman 2024-02-12 19:12:41 -08:00
parent a4040ae7bf
commit 8f20ea34c4
No known key found for this signature in database
GPG key ID: 7D81DF26D9A5D94A

View file

@ -164,7 +164,7 @@ public static class Core
{
// See notes above for _now and why this is a volatile variable.
var now = _now;
return now == DateTime.MinValue ? Core.Now : now;
return now == DateTime.MinValue ? DateTime.UtcNow : now;
}
}
@ -557,7 +557,7 @@ public static class Core
while (!Closing)
{
_tickCount = TickCount;
_now = Core.Now;
_now = DateTime.UtcNow;
Mobile.ProcessDeltaQueue();
Item.ProcessDeltaQueue();