[8074] Fixed typo in money save.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
nos4r2zod 2009-06-24 03:42:17 +04:00 committed by tomrus88
parent f8740c15ef
commit 93d3edfc15
2 changed files with 2 additions and 2 deletions

View file

@ -15566,7 +15566,7 @@ void Player::SaveInventoryAndGoldToDB()
void Player::SaveGoldToDB()
{
CharacterDatabase.PExecute("UPDATE money = '%u' WHERE guid = '%u'", GetMoney(), GetGUIDLow());
CharacterDatabase.PExecute("UPDATE characters SET money = '%u' WHERE guid = '%u'", GetMoney(), GetGUIDLow());
}
void Player::_SaveActions()