comparison Constants.lua @ 393:7d0ad2573092

Added support for collecting loot from item containers with no loot window and no spells cast.
author MMOSimca <MMOSimca@gmail.com>
date Thu, 18 Dec 2014 21:38:11 -0500
parents f1952ed33a16
children a30c251ad382
comparison
equal deleted inserted replaced
392:f1952ed33a16 393:7d0ad2573092
277 -- This means they -must- be tracked via CHAT_MSG_LOOT. 277 -- This means they -must- be tracked via CHAT_MSG_LOOT.
278 -- It also means there is a high margin for bad data since multiple bags can be clicked within a small time frame. 278 -- It also means there is a high margin for bad data since multiple bags can be clicked within a small time frame.
279 -- True = instant cast; false = cast time 279 -- True = instant cast; false = cast time
280 private.CONTAINER_ITEM_ID_LIST = { 280 private.CONTAINER_ITEM_ID_LIST = {
281 [116980] = true, -- Invader's Forgotten Treasure 281 [116980] = true, -- Invader's Forgotten Treasure
282 [118529] = true, -- Cache of Highmaul Treasures (Normal)
283 [118530] = true, -- Cache of Highmaul Treasures (Heroic)
284 [118531] = true, -- Cache of Highmaul Treasures (Mythic)
285 [119036] = true, -- Box of Storied Treasures
286 [119037] = true, -- Supply of Storied Rarities
282 [120319] = true, -- Invader's Damaged Cache 287 [120319] = true, -- Invader's Damaged Cache
283 [120320] = true, -- Invader's Abandoned Sack 288 [120320] = true, -- Invader's Abandoned Sack
284 } 289 }
285 for key, value in next, private.DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP do 290 for key, value in next, private.DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP do
286 private.CONTAINER_ITEM_ID_LIST[value] = false 291 private.CONTAINER_ITEM_ID_LIST[value] = false