Core/Misc: Better description for a log

This commit is contained in:
Aokromes
2016-07-02 19:35:44 +02:00
committed by Aokromes
parent c008d244ee
commit 5e3cb9a180

View File

@@ -318,7 +318,7 @@ inline void LoadDBC(uint32& availableDbcLocales, StoreProblemList& errors, DBCSt
if (FILE* f = fopen(dbcFilename.c_str(), "rb"))
{
std::ostringstream stream;
stream << dbcFilename << " exists, and has " << storage.GetFieldCount() << " field(s) (expected " << strlen(storage.GetFormat()) << "). Extracted file might be from wrong client version or a database-update has been forgotten.";
stream << dbcFilename << " exists, and has " << storage.GetFieldCount() << " field(s) (expected " << strlen(storage.GetFormat()) << "). Extracted file might be from wrong client version or a database-update has been forgotten. Search on forum for TCE00008 for more info.";
std::string buf = stream.str();
errors.push_back(buf);
fclose(f);