[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 VladimirMangos
parent 517697768a
commit aabde1030c
2 changed files with 2 additions and 2 deletions

View file

@ -15564,7 +15564,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()