diff --git a/AutoPotion.toc b/AutoPotion.toc index 80f28e3..c36d531 100755 --- a/AutoPotion.toc +++ b/AutoPotion.toc @@ -2,7 +2,7 @@ ## Interface-Classic: 11505 ## Interface-WOTLKC: 30403 ## Interface-Cata: 40401 -## Version: 3.8.3 +## Version: 3.8.4 ## 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/DB.lua b/Core/DB.lua index 9887bce..815c9b0 100644 --- a/Core/DB.lua +++ b/Core/DB.lua @@ -7,7 +7,8 @@ ham.defaults = { witheringDreamsPotion = false, cavedwellerDelight = true, heartseekingInjector = false, - activatedSpells = { ham.crimsonVialSpell, ham.renewal, ham.exhilaration, ham.fortitudeOfTheBear, ham.bitterImmunity, + activatedSpells = { ham.crimsonVialSpell, ham.renewal, ham.exhilaration, ham.fortitudeOfTheBear, ham.lastStand, ham + .bitterImmunity, ham.desperatePrayer, ham.healingElixir, ham.darkPact, ham.giftOfTheNaaruDK, ham.giftOfTheNaaruHunter, ham .giftOfTheNaaruMage, ham.giftOfTheNaaruMageWarlock, ham.giftOfTheNaaruMonk, ham.giftOfTheNaaruPaladin, ham.giftOfTheNaaruPriest, ham diff --git a/Core/Spells.lua b/Core/Spells.lua index 545d54b..6c4b0a1 100755 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -6,6 +6,7 @@ ham.crimsonVialSpell = 185311 ham.renewal = 108238 ham.exhilaration = 109304 ham.fortitudeOfTheBear = 388035 +ham.lastStand = 12975 ham.bitterImmunity = 383762 ham.desperatePrayer = 19236 ham.expelHarm = 322101 @@ -30,6 +31,7 @@ table.insert(ham.supportedSpells, ham.crimsonVialSpell) table.insert(ham.supportedSpells, ham.renewal) table.insert(ham.supportedSpells, ham.exhilaration) table.insert(ham.supportedSpells, ham.fortitudeOfTheBear) +table.insert(ham.supportedSpells, ham.lastStand) table.insert(ham.supportedSpells, ham.bitterImmunity) table.insert(ham.supportedSpells, ham.desperatePrayer) table.insert(ham.supportedSpells, ham.expelHarm)