diff --git a/src/game/ChatCommands/Level0.cpp b/src/game/ChatCommands/Level0.cpp index 5a9a10188..6b45098e6 100644 --- a/src/game/ChatCommands/Level0.cpp +++ b/src/game/ChatCommands/Level0.cpp @@ -33,7 +33,7 @@ #include "AccountMgr.h" #include "ScriptMgr.h" #include "SystemConfig.h" -#include "revision.h" +//#include "revision.h" #include "revision_nr.h" #include "Util.h" @@ -102,10 +102,7 @@ bool ChatHandler::HandleServerInfoCommand(char* /*args*/) std::string str = secsToTimeString(sWorld.GetUptime()); char const* full; - if (m_session) - full = MANGOS_FULLVERSION(REVISION_DATE, REVISION_TIME, REVISION_NR, "|cffffffff|Hurl:" REVISION_ID "|h" REVISION_ID "|h|r"); - else - full = MANGOS_FULLVERSION(REVISION_DATE, REVISION_TIME, REVISION_NR, REVISION_ID); + full = REVISION_NR; SendSysMessage(full); if (sScriptMgr.IsScriptLibraryLoaded()) diff --git a/src/shared/WheatyExceptionReport.cpp b/src/shared/WheatyExceptionReport.cpp index 6c7b5c1f2..dc02eb996 100644 --- a/src/shared/WheatyExceptionReport.cpp +++ b/src/shared/WheatyExceptionReport.cpp @@ -14,7 +14,6 @@ #define _NO_CVCONST_H #include #include "WheatyExceptionReport.h" -#include "revision.h" #include "revision_nr.h" #define CrashFolder _T("Crashes") //#pragma comment(linker, "/defaultlib:dbghelp.lib") @@ -299,7 +298,7 @@ void WheatyExceptionReport::GenerateExceptionReport( GetLocalTime(&systime); // Start out with a banner - _tprintf(_T("Revision: %s %s %s %s\r\n"), REVISION_DATE, REVISION_TIME, REVISION_NR, REVISION_ID); + _tprintf(_T("Revision: %s\r\n"), REVISION_NR); _tprintf(_T("Date %u:%u:%u. Time %u:%u \r\n"), systime.wDay, systime.wMonth, systime.wYear, systime.wHour, systime.wMinute); PEXCEPTION_RECORD pExceptionRecord = pExceptionInfo->ExceptionRecord;