From 24a0b070fb57e47ab8b8c4d8d50cfec32f4ab210 Mon Sep 17 00:00:00 2001 From: Fireblade <3+fireblade@noreply.neolegacy.dev> Date: Wed, 8 Jul 2026 20:31:23 -0400 Subject: [PATCH] chore: restore localization --- Minecraft.Client/Common/UI/IUIScene_StartGame.cpp | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/Minecraft.Client/Common/UI/IUIScene_StartGame.cpp b/Minecraft.Client/Common/UI/IUIScene_StartGame.cpp index 325082cb..070030b9 100644 --- a/Minecraft.Client/Common/UI/IUIScene_StartGame.cpp +++ b/Minecraft.Client/Common/UI/IUIScene_StartGame.cpp @@ -177,17 +177,8 @@ void IUIScene_StartGame::UpdateTexturePackDescription(int index) } else { - - if (tp->getId() != 1034) { - m_labelTexturePackName.setLabel(tp->getName()); - m_labelTexturePackDescription.setLabel(tp->getDesc1()); - } - else - { - // fireblade: temporarily hardcoded until someone figures out how to read big endian dlc string tables - m_labelTexturePackName.setLabel(L"Super Mario"); - m_labelTexturePackDescription.setLabel(L"Super Mario meets Minecraft! This Mash-Up Pack contains a Super Mario style Texture Pack, Skin Pack, and a Super Mario themed world to explore!"); - } + m_labelTexturePackName.setLabel(tp->getName()); + m_labelTexturePackDescription.setLabel(tp->getDesc1()); DWORD dwImageBytes; PBYTE pbImageData = tp->getPackIcon(dwImageBytes);