Skip to content

Commit

Permalink
Refactor: Moved some existing comments to their proper places
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubio authored and rdw-software committed Aug 24, 2023
1 parent 99bbb16 commit 20298f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Core/EventHandlers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1172,23 +1172,23 @@ function R:OnEvent(event, ...)
elseif event == "TRADE_SKILL_CLOSE" then
Rarity.isTradeskillOpen = false
elseif event == "MAIL_CLOSED" then
-- Instance lock info updated
Rarity.isMailboxOpen = false
elseif event == "UPDATE_INSTANCE_INFO" then
-- Instance lock info updated
self:ScanInstanceLocks(event)
elseif event == "LFG_UPDATE_RANDOM_INFO" then
-- Calendar updated
self:ScanInstanceLocks(event)
elseif event == "CALENDAR_UPDATE_EVENT_LIST" then
-- Toy box updated
-- Calendar updated
self:ScanCalendar(event)
elseif event == "TOYS_UPDATED" then
-- Pets updated
-- Toy box updated
Rarity.Collections:ScanExistingItems(event)
elseif event == "COMPANION_UPDATE" then
-- Logging out; end any open session
-- Pets updated
Rarity.Collections:ScanExistingItems(event)
elseif event == "PLAYER_LOGOUT" then
-- Logging out; end any open session
if Rarity.Session:IsActive() then
Rarity.Session:End()
end
Expand Down

0 comments on commit 20298f4

Please sign in to comment.