Quantcast

Commented out the potential count code temporarily.

pschifferer [02-24-09 - 04:21]
Commented out the potential count code temporarily.
Filename
CauldronUtil.lua
diff --git a/CauldronUtil.lua b/CauldronUtil.lua
index 68cd2a8..309e9b6 100644
--- a/CauldronUtil.lua
+++ b/CauldronUtil.lua
@@ -13,7 +13,7 @@ function Cauldron:GetPotentialCraftCount(skillInfo)
 	self:debug("GetPotentialCraftCount enter");

 	local count = 0;
-
+--[[
 	-- iterate over the reagent list and find out how many can be made for each reagent count;
 	-- the lowest value is the potential amount craftable
 	for i,rinfo in ipairs(skillInfo.reagents) do
@@ -26,7 +26,7 @@ function Cauldron:GetPotentialCraftCount(skillInfo)
 	end

 	self:debug("GetPotentialCraftCount exit");
-
+--]]
 	return count;
 end