mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[8074] Fixed typo in money save.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
f8740c15ef
commit
93d3edfc15
2 changed files with 2 additions and 2 deletions
|
|
@ -15566,7 +15566,7 @@ void Player::SaveInventoryAndGoldToDB()
|
||||||
|
|
||||||
void Player::SaveGoldToDB()
|
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()
|
void Player::_SaveActions()
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8073"
|
#define REVISION_NR "8074"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue