changeset 423:0aac203792c2

Fixed a timer left at the old duration of chat-based loot recording.
author MMOSimca <MMOSimca@gmail.com>
date Wed, 07 Jan 2015 17:29:29 -0500
parents 063309f31455
children d06d1716228d
files Main.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Main.lua	Wed Jan 07 17:21:50 2015 -0500
+++ b/Main.lua	Wed Jan 07 17:29:29 2015 -0500
@@ -606,7 +606,7 @@
         if (private.CONTAINER_ITEM_ID_LIST[item_id] == true) and ((not _G.GetNumLootItems()) or (_G.GetNumLootItems() == 0)) then
             ClearChatLootData()
             Debug("HandleItemUse: Beginning chat-based loot timer for item with ID %d.", item_id)
-            chat_loot_timer_handle = C_Timer.NewTimer(1, ClearChatLootData)
+            chat_loot_timer_handle = C_Timer.NewTimer(1.5, ClearChatLootData)
             chat_loot_data = chat_loot_data or {}
             chat_loot_data.identifier = item_id
             chat_loot_data.sources = {}