Mercurial > wow > inventory
comparison Modules/Alerts.lua @ 188:5cee31b1418a
Cleaning up.
author | Zerotorescue |
---|---|
date | Mon, 31 Jan 2011 15:06:37 +0100 |
parents | 679d3664849d |
children | 15f22a466596 |
comparison
equal
deleted
inserted
replaced
187:2707dea58d96 | 188:5cee31b1418a |
---|---|
268 return IdToItemLink(data[realrow].rowData.itemId); | 268 return IdToItemLink(data[realrow].rowData.itemId); |
269 end, | 269 end, |
270 }, -- item | 270 }, -- item |
271 { | 271 { |
272 ["value"] = function(data, cols, realrow, column, table) | 272 ["value"] = function(data, cols, realrow, column, table) |
273 return addon:DisplayItemCount(data[realrow].rowData.localCount or -4, data[realrow].rowData.group.minLocalStock); | 273 return addon:DisplayItemCount(data[realrow].rowData.localCount or -2, data[realrow].rowData.group.minLocalStock); |
274 end, | 274 end, |
275 }, -- local | 275 }, -- local |
276 { | 276 { |
277 ["value"] = function(data, cols, realrow, column, table) | 277 ["value"] = function(data, cols, realrow, column, table) |
278 return addon:DisplayItemCount(data[realrow].rowData.globalCount or -4, data[realrow].rowData.group.minGlobalStock); | 278 return addon:DisplayItemCount(data[realrow].rowData.globalCount or -2, data[realrow].rowData.group.minGlobalStock); |
279 end, | 279 end, |
280 }, -- global | 280 }, -- global |
281 }; | 281 }; |
282 | 282 |
283 -- Store the list with rows in this | 283 -- Store the list with rows in this |