Implement spell AI pulling, fix throw stone

This commit is contained in:
nytmyr
2024-12-02 07:32:30 -06:00
parent f74fd59b62
commit faf372d31d
5 changed files with 62 additions and 15 deletions
+3
View File
@@ -410,6 +410,8 @@ public:
void SetPauseAI(bool pause_flag) { _pauseAI = pause_flag; }
bool IsCommandedSpell() const { return _commandedSpell; }
void SetCommandedSpell(bool value) { _commandedSpell = value; }
bool IsPullingSpell() const { return _pullingSpell; }
void SetPullingSpell(bool value) { _pullingSpell = value; }
void SetGuardMode();
void SetHoldMode();
@@ -1083,6 +1085,7 @@ private:
uint16 _castedSpellType;
bool _hasLoS;
bool _commandedSpell;
bool _pullingSpell;
// Private "base stats" Members
int32 _baseMR;