Mercurial > wow > inventory
comparison Modules/Mover.lua @ 95:31493364b163
Fixed GetItemId usage to the proper capitals.
author | Zerotorescue |
---|---|
date | Sat, 08 Jan 2011 01:39:04 +0100 |
parents | a12d22ef3f39 |
children | 252292b703ce |
comparison
equal
deleted
inserted
replaced
94:14a4d757d683 | 95:31493364b163 |
---|---|
279 local sourceLocationsLocked = {}; | 279 local sourceLocationsLocked = {}; |
280 local targetLocationsLocked = {}; | 280 local targetLocationsLocked = {}; |
281 | 281 |
282 local _GetContainerItemId = GetContainerItemID; | 282 local _GetContainerItemId = GetContainerItemID; |
283 if movesSource == addon.Locations.Guild then | 283 if movesSource == addon.Locations.Guild then |
284 _GetContainerItemId = function(tabId, slotId) return addon:GetItemID(GetGuildBankItemLink(tabId, slotId)); end; | 284 _GetContainerItemId = function(tabId, slotId) return addon:GetItemId(GetGuildBankItemLink(tabId, slotId)); end; |
285 end | 285 end |
286 local _GetContainerItemInfo = GetContainerItemInfo; | 286 local _GetContainerItemInfo = GetContainerItemInfo; |
287 if movesSource == addon.Locations.Guild then | 287 if movesSource == addon.Locations.Guild then |
288 _GetContainerItemInfo = GetGuildBankItemInfo; | 288 _GetContainerItemInfo = GetGuildBankItemInfo; |
289 end | 289 end |