diff --git a/AdiBags_Bears_Enchanting.toc b/AdiBags_Bears_Enchanting.toc index e03e969..0c51bd8 100644 --- a/AdiBags_Bears_Enchanting.toc +++ b/AdiBags_Bears_Enchanting.toc @@ -10,9 +10,8 @@ ## Dependencies: AdiBags expansion.lua -DF-Vendor.lua +Global-dbs.lua DF-Global.lua -DF-Elemental.lua SL-db.lua DF-db.lua core.lua diff --git a/DF-Vendor.lua b/DF-Vendor.lua deleted file mode 100644 index d97c256..0000000 --- a/DF-Vendor.lua +++ /dev/null @@ -1,48 +0,0 @@ --- AdiBags Vendor items - Database --- Created by @project-author@ character is Bearesquishy - dalaran please credit whenever. --- Source on GitHub: https://n6rej.github.io ----@type ---- -local addonName, addonTable = ... - --- Get the common name for Release -local E = addonTable.expansion -local Expansion = E["Dragonflight"] - --- Create addon table -local db = addonTable.Dragonflight - --- Filter info -db.Filters = { - ["Vendor_Reagents"] = { - uiName = "Bears " .. Expansion .. " Vendor Reagents", - uiDesc = "Reagents from vendors used in " .. Expansion, - title = "Vendor", - items = { - -- ID = true, --Item name - [191474] = true, -- Draconic Vial - [200860] = true, -- Draconic Stopper - [197861] = true, -- Fleeting Philosopher's Stone - [194784] = true, -- Glittering Parchment - [38682] = true, -- Enchanting Vellum - [198615] = true, -- Pentagold Seal - [197752] = true, -- Conveniently Packaged Ingredients - [197749] = true, -- Ohn'ahran Potato - [197750] = true, -- Three-Cheese Blend - [197751] = true, -- Pastry packets - [197753] = true, -- Thaldraszian Cocoa Powder - [201584] = true, -- Serevite Rod - [190452] = true, -- Primal Flux - [201832] = true, -- Smudged Lens - [198487] = true, -- Iridescent Water - [192833] = true, -- Misshapen Filigree - [198796] = true, -- Quack-E Quack Modulator - } - } -} - --- now that db is populated lets pass it on. -for _,v in ipairs(db) do - table.insert(addonTable.Dragonflight, v) -end -