Skip to content

Commit

Permalink
added Dreamwalkers Healing Potions
Browse files Browse the repository at this point in the history
  • Loading branch information
ollidiemaus committed Nov 9, 2023
1 parent 410fe50 commit fc55358
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AutoPotion.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 100200
## Interface-Classic: 11404
## Interface-WOTLKC: 30402
## Version: 3.2.8
## Version: 3.3.0
## Title: Auto Potion
## Author: ollidiemaus
## Notes: Updates the Macro AutoPotion to use either Healthstone or the highest Potion found in Bags
Expand Down
6 changes: 6 additions & 0 deletions Core/Potions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ local isWrath = (WOW_PROJECT_ID == WOW_PROJECT_WRATH_CLASSIC)
--ham.leywine = ham.Item.new(194684,"Azure Leywine")
--ham.healthstone = ham.Item.new(117, "Healthstone")
ham.healthstone = ham.Item.new(5512, "Healthstone")
ham.dreamR3 = ham.Item.new(207023, "Dreamwalker's Healing Potion")
ham.dreamsR2 = ham.Item.new(207022, "Dreamwalker's Healing Potion")
ham.dreamR1 = ham.Item.new(207021, "Dreamwalker's Healing Potion")
ham.witheringR3 = ham.Item.new(191371, "Potion of Withering Vitality")
ham.witheringR2 = ham.Item.new(191370, "Potion of Withering Vitality")
ham.witheringR1 = ham.Item.new(191369, "Potion of Withering Vitality")
Expand Down Expand Up @@ -72,6 +75,9 @@ ham.fel2 = ham.Item.new(36894, "Fel Healthstone")
function ham.getPots()
if isRetail then
local pots = {
ham.dreamR3,
ham.dreamsR2,
ham.dreamR1,
ham.refreshingR3,
ham.refreshingR2,
ham.refreshingR1,
Expand Down

0 comments on commit fc55358

Please sign in to comment.