Mercurial > wow > inventory
diff Classes/ContainerItem.class.lua @ 117:239e25a058c7
Implemented mail refilling support. Respecting the MailAddonBusy global when opening so addons like MailOpener shouldn?t interfere.
author | Zerotorescue |
---|---|
date | Sat, 15 Jan 2011 13:15:16 +0100 |
parents | 41f0689dfda1 |
children | dc6f405c1a5d |
line wrap: on
line diff
--- a/Classes/ContainerItem.class.lua Fri Jan 14 23:46:05 2011 +0100 +++ b/Classes/ContainerItem.class.lua Sat Jan 15 13:15:16 2011 +0100 @@ -6,13 +6,12 @@ addon.ContainerItem.__index = addon.ContainerItem; -- Construct -function addon.ContainerItem:New(id) +function addon.ContainerItem:New() local self = {}; setmetatable(self, addon.ContainerItem); -- Standard info everything needs - self.id = id; self.totalCount = 0; self.locations = {};