From 8af79825e45bf44dd82ae738b85e1c3ae9053703 Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Wed, 10 Jan 2024 23:34:29 +0800 Subject: [PATCH] Fury whirlwind --- src/strategy/warrior/FuryWarriorStrategy.cpp | 3 +++ src/strategy/warrior/GenericWarriorStrategy.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/strategy/warrior/FuryWarriorStrategy.cpp b/src/strategy/warrior/FuryWarriorStrategy.cpp index 1f8c3aee..146379e8 100644 --- a/src/strategy/warrior/FuryWarriorStrategy.cpp +++ b/src/strategy/warrior/FuryWarriorStrategy.cpp @@ -65,4 +65,7 @@ void FuryWarriorStrategy::InitTriggers(std::vector &triggers) triggers.push_back(new TriggerNode("death wish", NextAction::array(0, new NextAction("death wish", ACTION_HIGH + 2), nullptr))); // triggers.push_back(new TriggerNode("rampage", NextAction::array(0, new NextAction("rampage", ACTION_INTERRUPT + 1), nullptr))); triggers.push_back(new TriggerNode("high rage available", NextAction::array(0, new NextAction("heroic strike", ACTION_HIGH + 1), NULL))); + // triggers.push_back(new TriggerNode("light aoe", NextAction::array(0, + // new NextAction("whirlwind", ACTION_HIGH + 2), + // nullptr))); } diff --git a/src/strategy/warrior/GenericWarriorStrategy.cpp b/src/strategy/warrior/GenericWarriorStrategy.cpp index 01260118..62220389 100644 --- a/src/strategy/warrior/GenericWarriorStrategy.cpp +++ b/src/strategy/warrior/GenericWarriorStrategy.cpp @@ -46,7 +46,7 @@ void WarrirorAoeStrategy::InitTriggers(std::vector& triggers) new NextAction("shockwave", ACTION_HIGH + 4), new NextAction("sweeping strikes", ACTION_HIGH + 3), new NextAction("bladestorm", ACTION_HIGH + 3), - new NextAction("whirlwind", ACTION_HIGH + 2), + // new NextAction("whirlwind", ACTION_HIGH + 2), new NextAction("demoralizing shout without life time check", ACTION_HIGH + 1), new NextAction("cleave", ACTION_HIGH), nullptr)));