diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Player.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 35cfe584199..b21276c2e51 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -21853,6 +21853,8 @@ void Player::ActivateSpec(uint8 spec) _SaveActions(); + UnsummonPetTemporaryIfAny(); + uint32 const* talentTabIds = GetTalentTabPages(getClass()); for(uint8 i = 0; i < 3; ++i) @@ -21948,7 +21950,8 @@ void Player::ActivateSpec(uint8 spec) { _LoadActions(result, false); } - UnsummonPetTemporaryIfAny(); + + ResummonPetTemporaryUnSummonedIfAny(); SendActionButtons(1); Powers pw = getPowerType(); |