Commit f3138ca 1 parent 3c29a06 commit f3138ca Copy full SHA for f3138ca
File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 4
4
## Title : CraftSim
5
5
## Notes : Calculates the average profit based on your profession stats and other tools for dragonflight gold making
6
6
## Author : genju
7
- ## Version : 17.1.4
7
+ ## Version : 17.1.5
8
8
## X-Curse-Project-ID : 705015
9
9
## X-Wago-ID : 0mNwaPKo
10
10
## X-WoWI-ID : 26519
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ function CraftSim.NEWS:GET_NEWS(itemMap)
15
15
local news = {
16
16
f .bb (" Hello and thank you for using CraftSim!\n " ),
17
17
f .bb (" ( You are awesome! )" ),
18
+ newP (" 17.1.5" ),
19
+ f .p .. " Fixed a bug with" ,
20
+ f .a .. f .bb (" CraftQueue Auctionator Shopping List Creation" ),
18
21
newP (" 17.1.4" ),
19
22
f .P .. " Implemented " .. f .g (" TWW Craft Buffs" ),
20
23
f .p .. " Spec Info Update" ,
Original file line number Diff line number Diff line change @@ -480,6 +480,7 @@ function CraftSim.CRAFTQ.CreateAuctionatorShoppingListAll()
480
480
if reagent .hasQuality then
481
481
for qualityID , reagentItem in pairs (reagent .items ) do
482
482
local itemID = reagentItem .item :GetItemID ()
483
+ print (" Shopping List Creation: Item: " .. (reagentItem .item :GetItemLink () or " " ))
483
484
local isSelfCrafted = craftQueueItem .recipeData :IsSelfCraftedReagent (itemID )
484
485
if not isSelfCrafted then
485
486
reagentMap [itemID ] = reagentMap [itemID ] or {
@@ -529,6 +530,8 @@ function CraftSim.CRAFTQ.CreateAuctionatorShoppingListAll()
529
530
return cqi .recipeData :GetCrafterUID ()
530
531
end )
531
532
533
+ local crafterUIDs = GUTIL :ToSet (crafterUIDs )
534
+
532
535
--- convert to Auctionator Search Strings and deduct item count (of all crafters total)
533
536
local searchStrings = GUTIL :Map (reagentMap , function (info , itemID )
534
537
itemID = CraftSim .CRAFTQ :GetNonSoulboundAlternativeItemID (itemID )
@@ -541,6 +544,8 @@ function CraftSim.CRAFTQ.CreateAuctionatorShoppingListAll()
541
544
return itemCount + itemCountForCrafter
542
545
end )
543
546
547
+ print (" total item count " .. itemID .. " -> " .. totalItemCount )
548
+
544
549
local searchTerm = {
545
550
searchString = info .itemName ,
546
551
tier = info .qualityID ,
You can’t perform that action at this time.
0 commit comments