Mercurial > wow > inventory
view Plugins/AuctionAddons/Auctionator.lua @ 111:41f0689dfda1
This implementation of vendor buying did not work well. Too many customizations were needed that made the code hard to read and understand and eventually it was found that vendor buying should be based on refill target, not local stock. The mover/refiller is not meant for this, we should just do this somewhere else.
author | Zerotorescue |
---|---|
date | Fri, 14 Jan 2011 23:31:12 +0100 |
parents | 3bec0ea44607 |
children |
line wrap: on
line source
do local function GetValue(link) return Atr_GetAuctionBuyout(link) or -1; end local function IsEnabled() return (Atr_GetAuctionBuyout); end IMRegisterPricingAddon("Auctionator", GetValue, IsEnabled); end