diff Modules/QuickAuctions.lua @ 40:5273038322d7 release

Updated the way postage was counted so that if you mail multiple items at once, they will all have the postage counted. I also removed the 30c for postage from how QA thresholds are calculated now that they will be counted every time.
author Asa Ayers <Asa.Ayers@Gmail.com>
date Mon, 19 Jul 2010 20:55:50 -0700
parents 554b30908b33
children 4ec321eb0dfe
line wrap: on
line diff
--- a/Modules/QuickAuctions.lua	Mon Jul 19 20:16:40 2010 -0700
+++ b/Modules/QuickAuctions.lua	Mon Jul 19 20:55:50 2010 -0700
@@ -46,9 +46,6 @@
 	-- GetAuctionThreshold returns a percent as a whole number. This will convert 25 to 1.25
 	copper = copper *  (1+addon:GetAuctionThreshold())
 	
-	-- Adding the cost of mailing every item once.
-	copper = copper + 30
-	
 	-- add AH Cut
 	local keep = 1 - addon:GetAHCut()
 	return copper/keep