From 9d7c8d401cad1291fa3aada614fdeb7f5b98efe9 Mon Sep 17 00:00:00 2001 From: Tga123 <29838841+Tga123@users.noreply.github.com> Date: Sun, 18 Dec 2022 04:04:56 +0300 Subject: [PATCH] "Sparks of Life" fix. --- Templates.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Templates.lua b/Templates.lua index 8a857c8..1243e0b 100644 --- a/Templates.lua +++ b/Templates.lua @@ -489,7 +489,7 @@ function WQT_Utils:GetPinTime(questInfo) maxTime = 5760*60; offset = -720*60; local tagInfo = questInfo:GetTagInfo(); - if (timeLeft > maxTime or (tagInfo.isElite and tagInfo.quality == Enum.WorldQuestQuality.Epic)) then + if tagInfo and (timeLeft > maxTime or (tagInfo.isElite and tagInfo.quality == Enum.WorldQuestQuality.Epic)) then maxTime = 1440 * 7*60; offset = 0; end