From 8c5f2408416682143dee78b889a8dd8255f52518 Mon Sep 17 00:00:00 2001 From: Steven <139715581+StevenSYS@users.noreply.github.com> Date: Fri, 13 Mar 2026 22:52:01 +0000 Subject: [PATCH] Moved the version/branch string to the F3 menu. --- Minecraft.Client/Gui.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Minecraft.Client/Gui.cpp b/Minecraft.Client/Gui.cpp index f0d44319a..bc3888f54 100644 --- a/Minecraft.Client/Gui.cpp +++ b/Minecraft.Client/Gui.cpp @@ -1064,14 +1064,10 @@ void Gui::render(float a, bool mouseFree, int xMouse, int yMouse) vector lines; - // Only show version/branch for player 0 to avoid cluttering each splitscreen viewport - if (iPad == 0) + if (minecraft->options->renderDebug && minecraft->player != nullptr && minecraft->level != nullptr) { lines.push_back(ClientConstants::VERSION_STRING); lines.push_back(ClientConstants::BRANCH_STRING); - } - if (minecraft->options->renderDebug && minecraft->player != nullptr && minecraft->level != nullptr) - { lines.push_back(minecraft->fpsString); lines.push_back(L"E: " + std::to_wstring(minecraft->level->getAllEntities().size())); int renderDistance = app.GetGameSettings(iPad, eGameSetting_RenderDistance);