Added worldbuff strategy

This commit is contained in:
kadeshar
2024-12-20 23:04:22 +01:00
parent beabe5c701
commit eef41ab3b7
3 changed files with 17 additions and 1 deletions

View File

@@ -48,4 +48,14 @@ public:
std::string const getName() override { return "attack tagged"; }
};
class WorldBuffStrategy : public Strategy
{
public:
WorldBuffStrategy(PlayerbotAI* ai) : Strategy(ai) {}
uint32 GetType() const override { return STRATEGY_TYPE_NONCOMBAT; }
void InitTriggers(std::vector<TriggerNode*>& triggers) override;
std::string const getName() override { return "worldbuff"; }
};
#endif