- Added Auriaya fall from floor protection (#1318)

This commit is contained in:
kadeshar
2025-05-20 17:24:45 +02:00
committed by GitHub
parent 5910866362
commit e68c5a76c6
7 changed files with 61 additions and 1 deletions

View File

@@ -185,6 +185,14 @@ public:
bool isUseful() override;
};
class AuriayaFallFromFloorAction : public Action
{
public:
AuriayaFallFromFloorAction(PlayerbotAI* botAI) : Action(botAI, "auriaya fall from floor action") {}
bool Execute(Event event) override;
bool isUseful() override;
};
class HodirBitingColdJumpAction : public MovementAction
{
public: