sapphiron strategy fix

This commit is contained in:
Yunfan Li
2023-07-24 15:58:48 +08:00
parent d80aa5223b
commit 8c914e5723
7 changed files with 14 additions and 19 deletions

View File

@@ -6,6 +6,7 @@
#define _PLAYERBOT_GENERICHUNTERSTRATEGY_H
#include "CombatStrategy.h"
#include "Strategy.h"
class PlayerbotAI;
@@ -16,6 +17,7 @@ class GenericHunterStrategy : public CombatStrategy
void InitTriggers(std::vector<TriggerNode*>& triggers) override;
std::string const getName() override { return "hunter"; }
uint32 GetType() const override { return CombatStrategy::GetType() | STRATEGY_TYPE_RANGED | STRATEGY_TYPE_DPS; }
};
class HunterBoostStrategy : public Strategy