[7329] Fixed CastBarCaption localization data loading from DB.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
wilibald09 2009-02-23 07:39:21 +03:00 committed by VladimirMangos
parent 3441c28998
commit 373af9905d
2 changed files with 3 additions and 3 deletions

View file

@ -5298,9 +5298,9 @@ void ObjectMgr::LoadGameObjectLocales()
} }
} }
for(int i = MAX_LOCALE; i < MAX_LOCALE*2-1; ++i) for(int i = 1; i < MAX_LOCALE; ++i)
{ {
std::string str = fields[i].GetCppString(); std::string str = fields[i+(MAX_LOCALE-1)].GetCppString();
if(!str.empty()) if(!str.empty())
{ {
int idx = GetOrNewIndexForLocale(LocaleConstant(i)); int idx = GetOrNewIndexForLocale(LocaleConstant(i));

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "7328" #define REVISION_NR "7329"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__