From 1f440ff55c4c18b4b3479f59a2fd683ed2e0c1f9 Mon Sep 17 00:00:00 2001 From: Alar of Daggerspine Date: Wed, 18 May 2016 14:09:17 +0200 Subject: [PATCH] Debug print removed --- MissionCache.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/MissionCache.lua b/MissionCache.lua index 48135b2..3a7e6ae 100644 --- a/MissionCache.lua +++ b/MissionCache.lua @@ -32,7 +32,6 @@ local GetAuctionBuyout=GetAuctionBuyout if type(GetAuctionBuyout)=="function" then function addon:GetMarketValue(item) local rc,price=pcall(GetAuctionBuyout,item) - print(item,rc,price) if not rc then --@debug@ print("Error calling buyout for",item,":",price) @@ -40,10 +39,8 @@ if type(GetAuctionBuyout)=="function" then end price=tonumber(price) or 0 if price>0 then - print(item,price,true) return price,true else - print(item,tonumber(select(11,GetItemInfo(item))) or 0,false) return tonumber(select(11,GetItemInfo(item))) or 0,false end end -- 1.7.9.5