Don't show the git revision twice in server log

Previously:
```
2024-03-03 12:17:40 I git-revision: 885ae7ecae
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: 885ae7ecae
```
This commit is contained in:
heinrich5991 2024-03-03 12:17:52 +01:00
parent 7f08344aa8
commit e851c78e47

View file

@ -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);
}