diff options
author | megamage <none@none> | 2009-04-09 17:57:57 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-09 17:57:57 -0500 |
commit | 6d0b82676ca25d1fe1b796f3d19478c2b7fd163b (patch) | |
tree | fecd406e3332976a7c823b676f4a1dcd85eecb98 /src/trinitycore/Master.cpp | |
parent | 1694ab1f9525043b8a020350e2b77dec69a9245c (diff) |
[7643] Allow set, store and output creture EventAI data version in addition to world DB and script library versions. Author: VladimirMangos
*This patch is disabled in TC2.
--HG--
branch : trunk
Diffstat (limited to 'src/trinitycore/Master.cpp')
-rw-r--r-- | src/trinitycore/Master.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/trinitycore/Master.cpp b/src/trinitycore/Master.cpp index a92ac0584f5..62446c4106c 100644 --- a/src/trinitycore/Master.cpp +++ b/src/trinitycore/Master.cpp @@ -475,7 +475,8 @@ bool Master::_StartDB() sWorld.LoadDBVersion(); - sLog.outString("Using %s", sWorld.GetDBVersion()); + sLog.outString("Using World DB: %s", sWorld.GetDBVersion()); + sLog.outString("Using creature EventAI: %s", sWorld.GetCreatureEventAIVersion()); return true; } |