From 9e331ec58db2d98c46acff0eff118b9d3d556198 Mon Sep 17 00:00:00 2001 From: LazyByteDev <192471894+LazyByteDev@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:08:31 -0500 Subject: [PATCH] just changed "Minecraft Store" to "LCE Store" since custom servers --- Minecraft.Client/Common/UI/UIScene_MainMenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp b/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp index 00e3ab67..999d51fa 100644 --- a/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_MainMenu.cpp @@ -49,7 +49,7 @@ UIScene_MainMenu::UIScene_MainMenu(int iPad, void *initData, UILayer *parentLaye if(ProfileManager.IsFullVersion()) { m_bTrialVersion=false; - m_buttons[(int)eControl_UnlockOrDLC].init(app.GetString(IDS_DOWNLOADABLECONTENT),eControl_UnlockOrDLC); + m_buttons[(int)eControl_UnlockOrDLC].init(L"LCE Store",eControl_UnlockOrDLC); } else { @@ -180,7 +180,7 @@ void UIScene_MainMenu::handleGainFocus(bool navBack) if(navBack && ProfileManager.IsFullVersion()) { // Replace the Unlock Full Game with Downloadable Content - m_buttons[(int)eControl_UnlockOrDLC].setLabel(app.GetString(IDS_DOWNLOADABLECONTENT)); + m_buttons[(int)eControl_UnlockOrDLC].setLabel(L"LCE Store"); } #if TO_BE_IMPLEMENTED