Skip to content

Commit

Permalink
lower arenaidentify timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Schaka committed Mar 18, 2016
1 parent e23fd78 commit 4e9bb49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/ArenaIdentify.lua
Expand Up @@ -181,7 +181,7 @@ function ArenaIdentify:ZONE_CHANGED_NEW_AREA()
self.frame:Hide()
self.frame:SetScript("OnUpdate", function(self, elapsed)
timeElapsed = timeElapsed + elapsed
if( timeElapsed >= 1 ) then
if( timeElapsed >= 0.1 ) then
if( InCombatLockdown() ) then
self:UnregisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
self:Hide()
Expand All @@ -195,7 +195,7 @@ function ArenaIdentify:ZONE_CHANGED_NEW_AREA()
end)
end
timeElapsed = 1
timeElapsed = 0.1
self.frame:Show()
end
Expand Down

0 comments on commit 4e9bb49

Please sign in to comment.