From e851c78e47ce7bf213eeacd56207a3902b81eeb3 Mon Sep 17 00:00:00 2001 From: heinrich5991 Date: Sun, 3 Mar 2024 12:17:52 +0100 Subject: [PATCH] Don't show the git revision twice in server log Previously: ``` 2024-03-03 12:17:40 I git-revision: 885ae7ecaee4f1f7 2024-03-03 12:17:40 I server: version 18.0.3 on linux amd64 2024-03-03 12:17:40 I server: git revision hash: 885ae7ecaee4f1f7 ``` --- src/game/server/gamecontext.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp index 6c55177e2..0d8160d41 100644 --- a/src/game/server/gamecontext.cpp +++ b/src/game/server/gamecontext.cpp @@ -3879,9 +3879,6 @@ void CGameContext::OnInit(const void *pPersistentData) // create all entities from the game layer CreateAllEntities(true); - if(GIT_SHORTREV_HASH) - Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "git-revision", GIT_SHORTREV_HASH); - m_pAntibot->RoundStart(this); }