fix party member dispel.

This commit is contained in:
Yunfan Li
2023-05-29 23:03:21 +08:00
parent aaa358bdbe
commit d45a7dc5b8
27 changed files with 316 additions and 89 deletions

View File

@@ -18,4 +18,11 @@ class MeleeAction : public AttackAction
bool isUseful() override;
};
class TogglePetSpellAutoCastAction: public Action
{
public:
TogglePetSpellAutoCastAction(PlayerbotAI* ai): Action(ai, "toggle pet spell") {}
virtual bool Execute(Event event) override;
};
#endif