Entities/Player: ReacquireSpellFocusTarget is now private. It should've been private all along.

This commit is contained in:
Treeston
2019-08-11 13:56:42 +02:00
parent fcce90508d
commit 1c2b1cbba8

View File

@@ -341,7 +341,6 @@ class TC_GAME_API Creature : public Unit, public GridObject<Creature>, public Ma
// Handling caster facing during spellcast
void SetTarget(ObjectGuid guid) override;
void ReacquireSpellFocusTarget();
void DoNotReacquireSpellFocusTarget() { _spellFocusInfo.Delay = 0; }
void SetSpellFocus(Spell const* focusSpell, WorldObject const* target);
bool HasSpellFocus(Spell const* focusSpell = nullptr) const override;
@@ -432,6 +431,7 @@ class TC_GAME_API Creature : public Unit, public GridObject<Creature>, public Ma
bool m_respawnCompatibilityMode;
/* Spell focus system */
void ReacquireSpellFocusTarget();
struct
{
::Spell const* Spell = nullptr;