From 18bfee56169ff1f9771457cba5b88dbd7bae755b Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Tue, 11 Oct 2022 21:23:12 -0400 Subject: [PATCH] [Zone Shutdown] Fix for resetting shutdown timer (#2480) --- zone/zone.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/zone.cpp b/zone/zone.cpp index 07f092f16..a861d2344 100755 --- a/zone/zone.cpp +++ b/zone/zone.cpp @@ -1859,7 +1859,7 @@ void Zone::ResetShutdownTimer() { zone->GetZoneDescription() ); - autoshutdown_timer.SetTimer(autoshutdown_timer.GetDuration()); + autoshutdown_timer.Start(autoshutdown_timer.GetDuration(), true); } bool Zone::Depop(bool StartSpawnTimer) {