File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ externals:
1111 libs/LibTalentTree-1.0:
1212 url: https://github.com/NumyAddon/LibTalentTree-1.0
1313 curse-slug: libtalenttree
14- libs/LibUIDropDownMenu: https://github.com/NumyAddon/LibUIDropDownMenu
1514 libs/TaintLess:
1615 url: https://www.townlong-yak.com/addons.git/taintless
1716 commit: default
Original file line number Diff line number Diff line change 99 <Include file =" AceEvent-3.0\AceEvent-3.0.xml" />
1010 <Include file =" AceLocale-3.0\AceLocale-3.0.xml" />
1111 <Include file =" LibTalentTree-1.0\LibTalentTree-1.0.xml" />
12- <Include file =" LibUIDropDownMenu\LibUIDropDownMenu.xml" />
1312 <Include file =" TaintLess\TaintLess.xml" />
1413</Ui >
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ local Main = TTT.Main;
55local Util = TTT .Util ;
66local L = TTT .L ;
77
8- --- @type LibUIDropDownMenuNumy-4.0
9- local LibDD = LibStub (' LibUIDropDownMenuNumy-4.0' );
10-
118--- @class TalentTreeTweaks_ReduceTaintModule : AceModule , AceHook-3.0
129local Module = Main :NewModule (' ReduceTaint' , ' AceHook-3.0' );
1310
@@ -162,6 +159,8 @@ function Module:HandleOnBarHighlightMarkTaint()
162159 local function tryClearTaint ()
163160 if issecurevariable (' ON_BAR_HIGHLIGHT_MARKS' ) then return ; end
164161
162+ Util :DebugPrint (' ON_BAR_HIGHLIGHT_MARKS is tainted, attempting to cleanse' );
163+
165164 if InCombatLockdown () then
166165 Util :AddToCombatLockdownQueue (tryClearTaint );
167166
@@ -364,6 +363,9 @@ function Module:ShouldReplaceShareButton()
364363end
365364
366365function Module :HandleActionBarEventTaintSpread ()
366+ -- no longer works after 11.1.0, but hopefully hasn't been needed since 11.0.7 either
367+ if select (4 , GetBuildInfo ()) >= 110100 then return ; end
368+
367369 local events = {
368370 [' PLAYER_ENTERING_WORLD' ] = true ,
369371 [' ACTIONBAR_SLOT_CHANGED' ] = true ,
You can’t perform that action at this time.
0 commit comments