Skip to content

Commit

Permalink
try to fix druid dragonflight bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Repooc committed Sep 9, 2024
1 parent 8194dc4 commit bf014ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ElvUI_ActionBarBuddy/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ do
}

local function CanGlide()
return UnitPowerBarID('player') == VIGOR_BAR_ID
local isGliding = C_PlayerInfo.GetGlidingInfo()
-- return isGliding or UnitPowerBarID('player') == VIGOR_BAR_ID
return isGliding
end

local canGlide = false
Expand Down

0 comments on commit bf014ca

Please sign in to comment.