diff options
author | QAston <none@none> | 2009-06-23 13:05:15 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-06-23 13:05:15 +0200 |
commit | ad91c6b1e22c43d9418464087b9d27a841e4ce04 (patch) | |
tree | abd14f0cd6dfed1e3cdae612e91bbac57cc1c71d /src/game/CharacterHandler.cpp | |
parent | d1d26524d2889285d11cebf52b07da34906eb81d (diff) |
[8052] Fixed typo in error log output. Author: The_Game_Master
[8049] Added energize effect after last heal tick for 33763 and ranks. Author: bobaz
[8053] At character talents reset using chat command also reset talents
for all character pets. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/CharacterHandler.cpp')
-rw-r--r-- | src/game/CharacterHandler.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/CharacterHandler.cpp b/src/game/CharacterHandler.cpp index 84b830651e7..aca354750f0 100644 --- a/src/game/CharacterHandler.cpp +++ b/src/game/CharacterHandler.cpp @@ -815,6 +815,10 @@ void WorldSession::HandlePlayerLogin(LoginQueryHolder * holder) SendDoFlight( mountDisplayId, path, startNode ); } + // reset for all pets before pet loading + if(pCurrChar->HasAtLoginFlag(AT_LOGIN_RESET_PET_TALENTS)) + Pet::resetTalentsForAllPetsOf(pCurrChar); + // Load pet if any (if player not alive and in taxi flight or another then pet will remember as temporary unsummoned) pCurrChar->LoadPet(); |