Skip to content

Commit

Permalink
Fixes #71 - Corrected spelling mistaken on Demon Hunter Mount during …
Browse files Browse the repository at this point in the history
…Combat resulting in error being thrown
  • Loading branch information
DanSheps committed Oct 31, 2018
1 parent c7cf658 commit b59ba47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BeStride_Logic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ end
function BeStride_Logic:Combat()
if self:IsDeathKnight() and BeStride:DBGet("settings.classes.deathknight.wraithwalk") then
return BeStride_Mount:DeathKnightWraithWalk()
elseif self:IsDemonHunter() and BeStride:DBGet("setting.classes.demonhunter.felrush") then
return BeStride_Mount:FelRush()
elseif self:IsDemonHunter() and self:DemonHunterFelRush() then
return BeStride_Mount:DemonHunterFelRush()
elseif self:IsDruid() and BeStride:DBGet("settings.classes.druid.traveltotravel") then
return BeStride_Mount:DruidTravel()
elseif self:IsMage() and (BeStride:DBGet("settings.classes.mage.blink") or BeStride:DBGet("settings.classes.mage.slowfall")) then
Expand Down

0 comments on commit b59ba47

Please sign in to comment.