Skip to content

Commit

Permalink
Slightly shortened wait to tithe deposit
Browse files Browse the repository at this point in the history
Wait of one second seems to work as well as wait of 3 seconds.
  • Loading branch information
raptormama authored Jan 16, 2024
1 parent 8b0ea2b commit 363ae4d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 363ae4d

Please sign in to comment.