[8365] Small description clarify for new config option.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Fog 2009-08-13 21:34:24 +04:00 committed by VladimirMangos
parent 4aee78d2fb
commit 799dc0a693
3 changed files with 6 additions and 4 deletions

View file

@ -963,7 +963,10 @@ void World::LoadConfigSettings(bool reload)
{
// overwrite DB/old value
if(clientCacheId > 0)
{
m_configs[CONFIG_CLIENTCACHE_VERSION] = clientCacheId;
sLog.outString("Client cache version set to: %u", clientCacheId);
}
else
sLog.outError("ClientCacheVersion can't be negative %d, ignored.", clientCacheId);
}

View file

@ -569,10 +569,9 @@ LogColors = ""
# Default: 0 - recheck offhand slot weapon only at zone update
# 1 - recheck offhand slot weapon at talent reset also
#
#
# ClientCacheVersion
# Client resets cache if WDB files' version is not equal to this value.
# Default: 0 (no real meaning)
# Client cache version for client cache data reset. Use any different from DB value and not recently used for triggering reset.
# Default: 0 (use DB value from world DB db_version.cache_id field)
#
# Event.Announce
# Default: 0 (false)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8364"
#define REVISION_NR "8365"
#endif // __REVISION_NR_H__