diff options
author | leak <none@none> | 2010-12-19 17:14:54 +0100 |
---|---|---|
committer | leak <none@none> | 2010-12-19 17:14:54 +0100 |
commit | ff3dc410ed132f90c80a05b948e8c667c4c11e2d (patch) | |
tree | 10e54506abd74c00a0ab9b3156077297d3461dfe | |
parent | fd694cd2324a7e2d61d833a78024b68fd3605053 (diff) |
Typo in recent commit
--HG--
branch : trunk
-rwxr-xr-x | src/server/game/World/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp index edf93516207..625c7eb2492 100755 --- a/src/server/game/World/World.cpp +++ b/src/server/game/World/World.cpp @@ -1726,7 +1726,7 @@ void World::SetInitialWorldSettings() uint32 startupDuration = GetMSTimeDiffToNow(startupBegin); sLog.outString(); - sLog.outString("WORLD: World initialized in %u minuntes %u seconds", (startupDuration / 60000), ((startupDuration % 60000) / 1000) ); + sLog.outString("WORLD: World initialized in %u minutes %u seconds", (startupDuration / 60000), ((startupDuration % 60000) / 1000) ); sLog.outString(); } |