From 8f20ea34c465a7ccb03cdc2205649faee194c305 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Mon, 12 Feb 2024 19:12:41 -0800 Subject: [PATCH] Revert change --- Projects/Server/Main.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/Server/Main.cs b/Projects/Server/Main.cs index 43fa92fae..d17c45108 100644 --- a/Projects/Server/Main.cs +++ b/Projects/Server/Main.cs @@ -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();