diff options
Diffstat (limited to 'src/game/Player.cpp')
-rw-r--r-- | src/game/Player.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 9e6c1fa6a06..8f151296196 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -17542,11 +17542,12 @@ void Player::SaveToDB() if (m_session->isLogingOut() || !sWorld.getConfig(CONFIG_STATS_SAVE_ONLY_ON_LOGOUT)) _SaveStats(); + CharacterDatabase.CommitTransaction(); + // save pet (hunter pet level and experience and all type pets health/mana). if (Pet* pet = GetPet()) pet->SavePetToDB(PET_SAVE_AS_CURRENT); - CharacterDatabase.CommitTransaction(); } // fast save function for item/money cheating preventing - save only inventory and money state |