Skip to content

Commit

Permalink
turtle-wow: only extend autoshift if module is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
shagu committed Mar 3, 2024
1 parent 54a1ca7 commit 2723eb0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/turtle-wow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ pfUI:RegisterModule("turtle-wow", "vanilla", function ()
pfUI_locale["enUS"]["debuffs"]["Hand of Reckoning"] = { [0] = 3.0 }

-- add tree of life druid form to autoshift
table.insert(pfUI.autoshift.shapeshifts, "ability_druid_treeoflife")
if pfUI.autoshift then
table.insert(pfUI.autoshift.shapeshifts, "ability_druid_treeoflife")
end

-- disable turtle wow's map window implementation
if pfUI.map and not Cartographer and not METAMAP_TITLE then
Expand Down

0 comments on commit 2723eb0

Please sign in to comment.