Skip to content

Commit 32587cb

Browse files
committed
Cspell
1 parent 1bd28f0 commit 32587cb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Classes/ImportTab.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ function ImportTabClass:ImportItem(itemData, slotName)
10461046
if not slotName then
10471047
-- monk martial artist rune tattoos
10481048
if itemData.inventoryId == "Chakra" then
1049-
-- TODO: should probably be exported from chakraslots.dat64
1049+
-- TODO: should probably be exported from chakra slots table
10501050
-- API doesn't have slots directly, but has an x position similar to flasks
10511051
slotMap = {"Helmet Rune #1", "Body Armour Rune #1", "Body Armour Rune #2", "Gloves Rune #1", "Boots Rune #1"}
10521052
if slotMap[itemData.x + 1] and itemData.baseType then

src/Classes/ItemsTab.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
267267
end
268268
end
269269
local function addRuneSockets()
270-
-- TODO: use game data for this from chakraslots.dat64
270+
-- TODO: use game data for this from chakra slots table
271271
local slots = { { type = "Helmet", n = 1 }, { type = "Body Armour", n = 2 }, { type = "Gloves", n = 1 }, { type = "Boots", n = 1 } }
272272
for _, slot in ipairs(slots) do
273273
for i = 1, slot.n do

0 commit comments

Comments
 (0)