# HG changeset patch # User MMOSimca # Date 1420669769 18000 # Node ID 0aac203792c2d71215dd92a007ded3437e2b84b0 # Parent 063309f3145575544f23feae8da7926602899b5c Fixed a timer left at the old duration of chat-based loot recording. diff -r 063309f31455 -r 0aac203792c2 Main.lua --- 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 = {}