Skip to content

Commit

Permalink
Fixed spelling mistake in ML cache
Browse files Browse the repository at this point in the history
  • Loading branch information
evil-morfar committed Jun 10, 2024
1 parent 99cb806 commit df5788f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1506,10 +1506,10 @@ function RCLootCouncil:OnEvent(event, ...)
self.Log("Player relog...")

-- Restore masterlooter from cache, but only if not already set.
if not self.masterLooter and self.db.global.cache.masterlooter then
self.masterLooter = Player:Get(self.db.global.cache.masterlooter)
if not self.masterLooter and self.db.global.cache.masterLooter then
self.masterLooter = Player:Get(self.db.global.cache.masterLooter)
end
self.Log:d("ML:", self.masterLooter)
self.Log:d("ML, Cached:", self.masterLooter, self.db.global.cache.masterLooter)

-- Restore mldb and council
if self.db.global.cache.mldb then
Expand Down

0 comments on commit df5788f

Please sign in to comment.