Skip to content

Commit

Permalink
"Sparks of Life" fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tga123 authored Dec 18, 2022
1 parent 924e8b3 commit 9d7c8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Templates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9d7c8d4

Please sign in to comment.