Skip to content

Commit adb3191

Browse files
committed
Reshii wrap talents are now only auto-purchased after you've completed the introduction quest, preventing you from getting locked out
1 parent 2516dca commit adb3191

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

modules/autoPurchaseGenericTalents.lua

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
if true then return end
21
local _, TTT = ...;
32
--- @type TalentTreeTweaks_Main
43
local Main = TTT.Main;
@@ -11,6 +10,8 @@ local HORRIFIC_VISIONS_TREE_ID = 1057;
1110
local OVERCHARGED_TITAN_CONSOLE_TREE_ID = 1061;
1211
local RESHII_WRAPS_TREE_ID = 1115;
1312

13+
local RESHII_QUEST_ID = 89561;
14+
1415
local CHOICE_NODE_OPTION_1 = 1;
1516
local CHOICE_NODE_OPTION_2 = 2;
1617
local CHOICE_NODE_NOT_SET = 3;
@@ -470,6 +471,10 @@ end
470471

471472
function Module:PurchaseRishiiWrapsTalents()
472473
if not self.reshiiWrapsConfigID then return; end
474+
if not C_QuestLog.IsQuestFlaggedCompleted(RESHII_QUEST_ID) then
475+
-- must wait until the quest is complete, or you will not be able to progress the questline
476+
return;
477+
end
473478

474479
local ignoredNodeIDs = {};
475480
local configID = self.reshiiWrapsConfigID;

0 commit comments

Comments
 (0)