From 1e9b405b7a212b13a80a66316be8941f9cb14d2f Mon Sep 17 00:00:00 2001 From: PowerPete Date: Sat, 2 Oct 2010 18:38:19 +0400 Subject: [PATCH] [10577] 'shuttingdown' -> 'shutting down' in log Signed-off-by: VladimirMangos --- src/game/World.cpp | 4 ++-- src/shared/revision_nr.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game/World.cpp b/src/game/World.cpp index a1903f0b9..fb53fb25b 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -1820,7 +1820,7 @@ void World::ShutdownMsg(bool show, Player* player) ServerMessageType msgid = (m_ShutdownMask & SHUTDOWN_MASK_RESTART) ? SERVER_MSG_RESTART_TIME : SERVER_MSG_SHUTDOWN_TIME; SendServerMessage(msgid,str.c_str(),player); - DEBUG_LOG("Server is %s in %s",(m_ShutdownMask & SHUTDOWN_MASK_RESTART ? "restart" : "shuttingdown"),str.c_str()); + DEBUG_LOG("Server is %s in %s",(m_ShutdownMask & SHUTDOWN_MASK_RESTART ? "restart" : "shutting down"),str.c_str()); } } @@ -1838,7 +1838,7 @@ void World::ShutdownCancel() m_ExitCode = SHUTDOWN_EXIT_CODE; // to default value SendServerMessage(msgid); - DEBUG_LOG("Server %s cancelled.",(m_ShutdownMask & SHUTDOWN_MASK_RESTART ? "restart" : "shuttingdown")); + DEBUG_LOG("Server %s cancelled.",(m_ShutdownMask & SHUTDOWN_MASK_RESTART ? "restart" : "shutting down")); } /// Send a server message to the user(s) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 056db789a..18ce81a48 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10576" + #define REVISION_NR "10577" #endif // __REVISION_NR_H__