mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[8434] Fxied typo in account data loading.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
5cf72882ad
commit
d3fec0355c
2 changed files with 2 additions and 2 deletions
|
|
@ -582,7 +582,7 @@ void WorldSession::LoadGlobalAccountData()
|
||||||
void WorldSession::LoadAccountData(QueryResult* result, uint32 mask)
|
void WorldSession::LoadAccountData(QueryResult* result, uint32 mask)
|
||||||
{
|
{
|
||||||
for (uint32 i = 0; i < NUM_ACCOUNT_DATA_TYPES; ++i)
|
for (uint32 i = 0; i < NUM_ACCOUNT_DATA_TYPES; ++i)
|
||||||
if(mask & (1 < i))
|
if (mask & (1 << i))
|
||||||
m_accountData[i] = AccountData();
|
m_accountData[i] = AccountData();
|
||||||
|
|
||||||
if(!result)
|
if(!result)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8433"
|
#define REVISION_NR "8434"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue