Core/Misc: Fixed loading trinity_string

This commit is contained in:
Shauren
2014-08-15 20:01:58 +02:00
parent aab4ab166d
commit acfaf2d182

View File

@@ -7757,7 +7757,7 @@ bool ObjectMgr::LoadTrinityStrings(const char* table, int32 min_value, int32 max
data.Content.resize(1);
++count;
for (uint8 i = TOTAL_LOCALES - 1; i > 0; --i)
for (int8 i = TOTAL_LOCALES - 1; i >= 0; --i)
AddLocaleString(fields[i + 1].GetString(), LocaleConstant(i), data.Content);
} while (result->NextRow());