feat(Core/Scripting): Implement SetAutoAttackAllowed() to disable aut… (#20805)

* feat(Core/Scripting): Implement SetAutoAttackAllowed() to disable autoattacks

* Update ScriptedCreature.cpp
This commit is contained in:
Andrew
2024-12-02 08:11:18 -03:00
committed by GitHub
parent 3c706a8efc
commit 0f1618faf5
2 changed files with 10 additions and 2 deletions

View File

@@ -442,10 +442,15 @@ struct ScriptedAI : public CreatureAI
void SetInvincibility(bool apply) { _invincible = apply; };
[[nodiscard]] bool IsInvincible() const { return _invincible; };
// Disables creature auto attacks.
void SetAutoAttackAllowed(bool allow) { _canAutoAttack = allow; };
[[nodiscard]] bool IsAutoAttackAllowed() const { return _canAutoAttack; };
private:
Difficulty _difficulty;
bool _isHeroic;
bool _invincible;
bool _canAutoAttack;
std::unordered_set<uint32> _uniqueTimedEvents;
};