From 363ae4d9e9b04df154de2123f5b98305ab970515 Mon Sep 17 00:00:00 2001 From: Jennifer Date: Mon, 15 Jan 2024 21:36:16 -0600 Subject: [PATCH] Slightly shortened wait to tithe deposit Wait of one second seems to work as well as wait of 3 seconds. --- Core.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core.lua b/Core.lua index 874d91b..5c17a0c 100644 --- a/Core.lua +++ b/Core.lua @@ -529,12 +529,11 @@ function E.EventHandler(self, event, ...) end elseif event == "PLAYER_INTERACTION_MANAGER_FRAME_SHOW" and tonumber(arg1) == 10 then - C_Timer.After(3, function() E:DepositTithe() end) + C_Timer.After(1, function() E:DepositTithe() end) -- Mail_*: Update outstanding tithe from Mail soruces elseif event == "PLAYER_INTERACTION_MANAGER_FRAME_SHOW" and tonumber(arg1) == 17 then return E:UpdateOutstandingTithe("Mail") - elseif event == "PLAYER_INTERACTION_MANAGER_FRAME_HIDE" and tonumber(arg1) == 17 then return E:UpdateOutstandingTithe("Mail", true)