[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())
{
int idx = GetOrNewIndexForLocale(LocaleConstant(i));