From d59779377297f789fdc307d783f1f3b5ecac26af Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 30 Oct 2023 15:05:18 +0100 Subject: [PATCH] Use local time when resetting festivals. --- Glamourer/State/FunModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Glamourer/State/FunModule.cs b/Glamourer/State/FunModule.cs index afa5b5e..ac99e1a 100644 --- a/Glamourer/State/FunModule.cs +++ b/Glamourer/State/FunModule.cs @@ -66,7 +66,7 @@ public unsafe class FunModule : IDisposable } internal void ResetFestival() - => OnDayChange(DateTime.UtcNow.Day, DateTime.UtcNow.Month, DateTime.UtcNow.Year); + => OnDayChange(DateTime.Now.Day, DateTime.Now.Month, DateTime.Now.Year); public FunModule(CodeService codes, CustomizationService customizations, ItemManager items, Configuration config, GenericPopupWindow popupWindow, StateManager stateManager, ObjectManager objects, DesignConverter designConverter,