From 2344180f8abad7604744898db8e6eae107619ac7 Mon Sep 17 00:00:00 2001 From: Flamanis Date: Mon, 31 Jul 2023 01:44:05 -0500 Subject: [PATCH] Add nil check for Time Type in startup --- startup.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startup.lua b/startup.lua index 5af9db0a..49d3d6b4 100644 --- a/startup.lua +++ b/startup.lua @@ -581,7 +581,7 @@ function Details:StartMeUp() Details.boss_mods_timers.encounter_timers_dbm = Details.boss_mods_timers.encounter_timers_dbm or {} Details.boss_mods_timers.encounter_timers_bw = Details.boss_mods_timers.encounter_timers_bw or {} - if (Details.time_type == 3) then + if (Details.time_type == 3 or not Details.time_type) then Details.time_type = 2 end