Mercurial > wow > wowdb-profiler
comparison Constants.lua @ 410:ad8323486561
Added support for more item containers without loot windows. Improved conditional statements related to item handling.
author | MMOSimca <MMOSimca@gmail.com> |
---|---|
date | Fri, 02 Jan 2015 02:56:25 -0500 |
parents | a30c251ad382 |
children | df4820871122 |
comparison
equal
deleted
inserted
replaced
409:78a2e8928a34 | 410:ad8323486561 |
---|---|
68 [61898] = 15874, | 68 [61898] = 15874, |
69 [64202] = 45909, | 69 [64202] = 45909, |
70 [73500] = 52340, | 70 [73500] = 52340, |
71 [80615] = 58856, | 71 [80615] = 58856, |
72 [84193] = 60838, | 72 [84193] = 60838, |
73 [85325] = 54218, | |
74 [85435] = 50301, | |
75 [99438] = 69956, | 73 [99438] = 69956, |
76 [99500] = 69990, | 74 [99500] = 69990, |
77 [109946] = 78890, | 75 [109946] = 78890, |
78 [109948] = 78892, | 76 [109948] = 78892, |
79 [109954] = 77952, | 77 [109954] = 77952, |
294 -- List of items that, when right-clicked, reward loot (includes items from DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP). | 292 -- List of items that, when right-clicked, reward loot (includes items from DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP). |
295 -- This means they -must- be tracked via CHAT_MSG_LOOT. | 293 -- This means they -must- be tracked via CHAT_MSG_LOOT. |
296 -- It also means there is a high margin for bad data since multiple bags can be clicked within a small time frame. | 294 -- It also means there is a high margin for bad data since multiple bags can be clicked within a small time frame. |
297 -- True = instant cast; false = cast time | 295 -- True = instant cast; false = cast time |
298 private.CONTAINER_ITEM_ID_LIST = { | 296 private.CONTAINER_ITEM_ID_LIST = { |
299 [105751] = true, -- Kor'kron Shaman's Treasure | 297 [50301] = true, |
300 [116980] = true, -- Invader's Forgotten Treasure | 298 [54218] = true, |
301 [118529] = true, -- Cache of Highmaul Treasures (Normal) | 299 [97565] = true, |
302 [118530] = true, -- Cache of Highmaul Treasures (Heroic) | 300 [102137] = true, |
303 [118531] = true, -- Cache of Highmaul Treasures (Mythic) | 301 [105751] = true, |
304 [119036] = true, -- Box of Storied Treasures | 302 [110592] = true, |
305 [119037] = true, -- Supply of Storied Rarities | 303 [116980] = true, |
306 [120319] = true, -- Invader's Damaged Cache | 304 [118529] = true, |
307 [120320] = true, -- Invader's Abandoned Sack | 305 [118530] = true, |
306 [118531] = true, | |
307 [119036] = true, | |
308 [119037] = true, | |
309 [120319] = true, | |
310 [120320] = true, | |
308 } | 311 } |
309 for key, value in next, private.DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP do | 312 for key, value in next, private.DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP do |
310 private.CONTAINER_ITEM_ID_LIST[value] = false | 313 private.CONTAINER_ITEM_ID_LIST[value] = false |
311 end | 314 end |
312 | 315 |