Quantcast

Added Champion's Purse's real value

Adrian L Lange [07-29-12 - 00:11]
Added Champion's Purse's real value
Filename
Monomyth.lua
diff --git a/Monomyth.lua b/Monomyth.lua
index a2a43bc..b18f4ba 100644
--- a/Monomyth.lua
+++ b/Monomyth.lua
@@ -146,6 +146,12 @@ Monomyth:Register('QUEST_COMPLETE', function()
 			local link = GetQuestItemLink('choice', index)
 			if(link) then
 				local _, _, _, _, _, _, _, _, _, _, value = GetItemInfo(link)
+
+				if(string.match(link, 'item:45724:')) then
+					-- Champion's Purse, contains 10 gold
+					value = 1e5
+				end
+
 				if(value > bestValue) then
 					bestValue, bestIndex = value, index
 				end