# HG changeset patch # User Geoff Brock # Date 1473022275 14400 # Node ID 8e12723d408d0068c8d569b712397e29869933a3 # Parent 4f53579006091688f365ae2f65c7823c205749d2 Consolidated Gem Chips into their singular result; may require users to reset their database or manually edit their saved variables to remove incorrect chips. diff -r 4f5357900609 -r 8e12723d408d ProspectMe.lua --- a/ProspectMe.lua Sun Sep 04 16:50:14 2016 -0400 +++ b/ProspectMe.lua Sun Sep 04 16:51:15 2016 -0400 @@ -60,9 +60,12 @@ if not PM_SessionTable[containerID] then PM_SessionTable[containerID] = {timesProspected = 0} end - + for i = 1, GetNumLootItems() do local itemID = GetLootSlotLink(i):match("Hitem:(%d+)") + if itemID == "129099" or itemID == "130200" or itemID == "130201" or itemID == "130202" or itemID == "130203" or itemID == "130204" then --consolidate Colored Gem Chips into their resulting item + itemID = "129100" + end local quantity = select(3, GetLootSlotInfo(i)) if not PM_ItemTable[itemID] then CreateTableEntry(itemID)