Rogue spell cast optimize

This commit is contained in:
Yunfan Li
2024-02-09 23:51:03 +08:00
parent a7e33a6fad
commit c40a1bed67
6 changed files with 26 additions and 2 deletions

View File

@@ -80,6 +80,8 @@ DpsRogueStrategy::DpsRogueStrategy(PlayerbotAI* botAI) : MeleeCombatStrategy(bot
NextAction** DpsRogueStrategy::getDefaultActions()
{
return NextAction::array(0,
new NextAction("garrote", ACTION_DEFAULT + 0.3f),
new NextAction("ambush", ACTION_DEFAULT + 0.2f),
new NextAction("killing spree", ACTION_DEFAULT + 0.1f),
new NextAction("melee", ACTION_DEFAULT), NULL);
}