diff --git a/src/game/WorldSession.cpp b/src/game/WorldSession.cpp index 534cdef1e..a94981e0d 100644 --- a/src/game/WorldSession.cpp +++ b/src/game/WorldSession.cpp @@ -582,7 +582,7 @@ void WorldSession::LoadGlobalAccountData() void WorldSession::LoadAccountData(QueryResult* result, uint32 mask) { for (uint32 i = 0; i < NUM_ACCOUNT_DATA_TYPES; ++i) - if(mask & (1 < i)) + if (mask & (1 << i)) m_accountData[i] = AccountData(); if(!result) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3f145e25c..e361e6317 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8433" + #define REVISION_NR "8434" #endif // __REVISION_NR_H__