comparison Modules/Queue.lua @ 136:396c2960d54d

Queueing = queuing. :p
author Zerotorescue
date Tue, 18 Jan 2011 00:39:40 +0100
parents 8460855e3d90
children cd461a41723c
comparison
equal deleted inserted replaced
135:43c6750df18f 136:396c2960d54d
292 -- Update amount 292 -- Update amount
293 amount = (amount + bonus); 293 amount = (amount + bonus);
294 end 294 end
295 295
296 if amount > 0 and amount >= minCraftingQueue then 296 if amount > 0 and amount >= minCraftingQueue then
297 -- If we are queueing at least one AND more than the minimum amount, then proceed 297 -- If we are queuing at least one AND more than the minimum amount, then proceed
298 298
299 -- Auction value settings 299 -- Auction value settings
300 local value = (priceThreshold ~= 0 and addon:GetAuctionValue(itemLink, groupName)); 300 local value = (priceThreshold ~= 0 and addon:GetAuctionValue(itemLink, groupName));
301 301
302 if priceThreshold == 0 or value == -1 or value >= priceThreshold then 302 if priceThreshold == 0 or value == -1 or value >= priceThreshold then