Remove battle shout taunt

This commit is contained in:
Yunfan Li
2024-01-07 10:41:42 +08:00
parent 09db983a35
commit fb7797d3cf

View File

@@ -32,7 +32,13 @@ class TankWarriorStrategyActionNodeFactory : public NamedObjectFactory<ActionNod
ACTION_NODE_A(last_stand, "last stand", "intimidating shout"); ACTION_NODE_A(last_stand, "last stand", "intimidating shout");
ACTION_NODE_A(heroic_throw_on_snare_target, "heroic throw on snare target", "taunt on snare target"); ACTION_NODE_A(heroic_throw_on_snare_target, "heroic throw on snare target", "taunt on snare target");
ACTION_NODE_A(heroic_throw_taunt, "heroic throw", "taunt"); ACTION_NODE_A(heroic_throw_taunt, "heroic throw", "taunt");
ACTION_NODE_A(taunt, "taunt", "battle shout taunt"); static ActionNode* taunt(PlayerbotAI* botAI)
{
return new ActionNode("taunt",
/*P*/ nullptr,
/*A*/ nullptr,
/*C*/ nullptr);
}
}; };
TankWarriorStrategy::TankWarriorStrategy(PlayerbotAI* botAI) : GenericWarriorStrategy(botAI) TankWarriorStrategy::TankWarriorStrategy(PlayerbotAI* botAI) : GenericWarriorStrategy(botAI)