diff --git a/AutoPotion.toc b/AutoPotion.toc index f20627e..1b1064f 100755 --- a/AutoPotion.toc +++ b/AutoPotion.toc @@ -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 diff --git a/Core/Potions.lua b/Core/Potions.lua index f4e68a2..27c3a8a 100644 --- a/Core/Potions.lua +++ b/Core/Potions.lua @@ -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") @@ -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,