Added personal and realm bank implementations (#27)

* added personal and realm bank implementations

* fix gathering from personal and realm banks

* faster gathering from personal and realm banks

* Fix Profession Multiselect on Gathering window

* cleaner GetAscensionBankType function

* craft queue update
This commit is contained in:
Kian Soltani
2026-02-16 16:12:24 +01:00
committed by GitHub
parent 8a6c8fd3a2
commit 4a03ece3d3
10 changed files with 688 additions and 387 deletions
@@ -83,9 +83,9 @@ function Post:GetScanListAndSetup(GUIRef, options)
totalToPost, totalPosted, count = 0, 0, 0
local tempList, scanList = {}, {}
Post:UpdateBagState()
local function HasEnoughToPost(operation, itemString)
local maxStackSize = select(8, TSMAPI:GetSafeItemInfo(itemString)) or 1
local perAuction = min(maxStackSize, operation.stackSize)
@@ -129,7 +129,7 @@ function Post:GetScanListAndSetup(GUIRef, options)
tinsert(scanList, itemString)
end
end
TSMAPI:FireEvent("AUCTIONING:POST:START", {numItems=#scanList, isGroup=true})
return scanList
end