mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-27 23:56:25 +00:00
Core/Spells: DK Dancing Rune weapon diseases now count towards Heart Strike bonus damage
This commit is contained in:
@@ -2573,6 +2573,11 @@ class Player : public Unit, public GridObject<Player>
|
||||
uint32 m_pendingSpectatorInviteInstanceId;
|
||||
std::set<uint32> m_receivedSpectatorResetFor;
|
||||
|
||||
// Dancing Rune weapon
|
||||
void setRuneWeaponGUID(uint64 guid) { m_drwGUID = guid; };
|
||||
uint64 getRuneWeaponGUID() { return m_drwGUID; };
|
||||
uint64 m_drwGUID;
|
||||
|
||||
bool CanSeeDKPet() const { return m_ExtraFlags & PLAYER_EXTRA_SHOW_DK_PET; }
|
||||
void SetShowDKPet(bool on) { if (on) m_ExtraFlags |= PLAYER_EXTRA_SHOW_DK_PET; else m_ExtraFlags &= ~PLAYER_EXTRA_SHOW_DK_PET; };
|
||||
void PrepareCharmAISpells();
|
||||
|
||||
Reference in New Issue
Block a user