We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7c2730a + 0483b29 commit e4120c8Copy full SHA for e4120c8
Client/mods/deathmatch/logic/CPacketHandler.cpp
@@ -309,6 +309,10 @@ void CPacketHandler::Packet_ServerConnected(NetBitStreamInterface& bitStream)
309
if (g_pGame->GetSystemState() == SystemState::GS_FRONTEND)
310
{
311
g_pGame->StartGame();
312
+
313
+ // Fix area name showing for a second when joining to server for first time
314
+ // HUD_AREA_NAME will be made visible later in the process when the camera fades in (CCameraRPCs::FadeCamera)
315
+ g_pGame->GetHud()->SetComponentVisible(HUD_AREA_NAME, false);
316
}
317
318
0 commit comments