Skip to content

Commit

Permalink
Add mana tide action for restoration shamans for tbc and wotlk
Browse files Browse the repository at this point in the history
  • Loading branch information
davidonete committed Dec 16, 2024
1 parent 4ba1999 commit 5fc7f18
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions playerbot/strategy/shaman/RestorationShamanStrategy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,10 @@ void RestorationShamanStrategy::InitCombatTriggers(std::list<TriggerNode*>& trig
{
ShamanStrategy::InitCombatTriggers(triggers);

triggers.push_back(new TriggerNode(
"low mana",
NextAction::array(0, new NextAction("mana tide totem", ACTION_EMERGENCY), NULL)));

triggers.push_back(new TriggerNode(
"critical health",
NextAction::array(0, new NextAction("healing wave", ACTION_CRITICAL_HEAL + 1), NULL)));
Expand Down Expand Up @@ -988,6 +992,10 @@ void RestorationShamanStrategy::InitCombatTriggers(std::list<TriggerNode*>& trig
{
ShamanStrategy::InitCombatTriggers(triggers);

triggers.push_back(new TriggerNode(
"low mana",
NextAction::array(0, new NextAction("mana tide totem", ACTION_EMERGENCY), NULL)));

triggers.push_back(new TriggerNode(
"critical health",
NextAction::array(0, new NextAction("healing wave", ACTION_CRITICAL_HEAL + 1), NULL)));
Expand Down

1 comment on commit 5fc7f18

@al3xc1985
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this fills my heart with joy! :D

Please sign in to comment.