Skip to content

Commit 12edc99

Browse files
committed
Merge branch 'release/3.11.1'
2 parents 0f1dd57 + 0b66f16 commit 12edc99

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

Core/Defaults.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ addon.defaults = {
254254
[152902] = true, [152906] = true, [152907] = true, [155831] = true, -- Rune of Passage (Antorus shortcut item), Pantheon's Blessing
255255
[152908] = true, [152909] = true, [152910] = true, -- Sigil of the Dark Titan (Another Antorus shortcut item)
256256
[162461] = true, -- Sanguicell (BfA crafting)
257+
[213089] = true, -- Antique Bronze Bullion (DF S4 Weapon/Trinket currency)
257258
},
258259
},
259260
} -- defaults end

RCLootCouncil.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## Author: Potdisc
22
## Interface: 100206
3-
## Notes: Interface for running a Loot Council v3.11.0
3+
## Notes: Interface for running a Loot Council v3.11.1
44
## Title: RCLootCouncil
5-
## Version: 3.11.0
5+
## Version: 3.11.1
66
## SavedVariables: RCLootCouncilDB, RCLootCouncilLootDB
77
## OptionalDeps: LibStub, CallbackHandler-1.0, Ace3, lib-st, LibWindow-1.1, LibDialog-1.0
88
## X-Curse-Project-ID: 39928

Utils/tokenData.lua

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,17 +112,14 @@ function RCLootCouncil:ExportTokenData(nextID)
112112
frame.exportFrame.edit:SetText(exports)
113113
end
114114

115-
-- REVIEW: Doesn't work. Neither does the new C_TooltipInfo system.
116115
--- Fetches the slot of a token from its tooltip by
117116
--- searching the `leftText` of each line for keywords.
118117
--- @param id ItemID The itemID of the item to scan.
119118
--- @return string #The slot name, or "" if not found.
120119
function RCLootCouncil:GetTokenSlotFromTooltip(id)
121120
local lines = self:GetTooltipLines(id)
122121
for _, text in ipairs(lines) do
123-
print("Text:", text)
124122
if text and text:sub(0, 4) == "Use:" then
125-
self.Log:d("Found text", text)
126123
for invSlot, keywords in pairs(keyWords) do
127124
for _, keyword in pairs(keywords) do
128125
if text:lower():find(keyword) then
@@ -809,6 +806,26 @@ _G.RCTokenTable = {
809806
[207479] = "ShoulderSlot", -- Mystic Smoldering Dreamheart,
810807
[207480] = "ShoulderSlot", -- Venerated Smoldering Dreamheart,
811808
[207481] = "ShoulderSlot", -- Zenith Smoldering Dreamheart,
809+
[217316] = "ChestSlot", -- Dreadful Fleeting Hourglass,
810+
[217317] = "ChestSlot", -- Mystic Fleeting Hourglass,
811+
[217318] = "ChestSlot", -- Venerated Fleeting Hourglass,
812+
[217319] = "ChestSlot", -- Zenith Fleeting Hourglass,
813+
[217320] = "HandsSlot", -- Dreadful Quickened Bronzestone,
814+
[217321] = "HandsSlot", -- Mystic Quickened Bronzestone,
815+
[217322] = "HandsSlot", -- Venerated Quickened Bronzestone,
816+
[217323] = "HandsSlot", -- Zenith Quickened Bronzestone,
817+
[217324] = "HeadSlot", -- Dreadful Decelerating Chronograph,
818+
[217325] = "HeadSlot", -- Mystic Decelerating Chronograph,
819+
[217326] = "HeadSlot", -- Venerated Decelerating Chronograph,
820+
[217327] = "HeadSlot", -- Zenith Decelerating Chronograph,
821+
[217328] = "LegsSlot", -- Dreadful Ephemeral Hypersphere,
822+
[217329] = "LegsSlot", -- Mystic Ephemeral Hypersphere,
823+
[217330] = "LegsSlot", -- Venerated Ephemeral Hypersphere,
824+
[217331] = "LegsSlot", -- Zenith Ephemeral Hypersphere,
825+
[217332] = "ShoulderSlot", -- Dreadful Synchronous Timestrand,
826+
[217333] = "ShoulderSlot", -- Mystic Synchronous Timestrand,
827+
[217334] = "ShoulderSlot", -- Venerated Synchronous Timestrand,
828+
[217335] = "ShoulderSlot", -- Zenith Synchronous Timestrand,
812829
}
813830

814831
-- The base item level for the token on normal difficulty

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 3.11.1
2+
3+
## Changes
4+
5+
Added support for tier tokens from Awakened Raids.
6+
7+
Added Antique Bronze Bullion to the ignore list.
8+
19
# 3.11.0
210

311
## Changes

0 commit comments

Comments
 (0)