From eb9dfa29e7c7e4b7950551f494e1e1ded8cfe9ba Mon Sep 17 00:00:00 2001 From: Alexandra-Myers Date: Sun, 8 Mar 2026 14:57:08 -0400 Subject: [PATCH] Cleanup & prep --- Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.cpp | 3 +++ Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.h | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.cpp b/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.cpp index 7bded2422..90e7cc1b6 100644 --- a/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.cpp @@ -502,6 +502,9 @@ void UIScene_LaunchMoreOptionsMenu::handleFocusChange(F64 controlId, F64 childId case eControl_EditSeed: stringId = IDS_GAMEOPTION_SEED; break; + case eControl_WorldMobCap: + stringId = IDS_GAMEOPTION_SEED; + break; #ifdef _LARGE_WORLDS case eControl_WorldSize: stringId = IDS_GAMEOPTION_WORLD_SIZE; diff --git a/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.h b/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.h index aa7b97e2e..962ea1765 100644 --- a/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.h +++ b/Minecraft.Client/Common/UI/UIScene_LaunchMoreOptionsMenu.h @@ -62,8 +62,7 @@ private: UIControl_TextInput m_editSeed; UIControl_Slider m_sliderWorldSize; UIControl_Slider m_sliderWorldResize; - UIControl_Label m_labelWorldMobCap; // Added ~ Mob cap label for user control - UIControl_Slider m_sliderWorldMobCap; + UIControl_Slider m_sliderWorldMobCap; // Added ~ Mob cap slider for user control IggyName m_funcSetMenuType, m_funcChangeTab, m_funcSetDescription; UI_BEGIN_MAP_ELEMENTS_AND_NAMES(UIScene) UI_MAP_ELEMENT( m_labelGameOptions, "LabelGame") @@ -102,7 +101,6 @@ private: UI_MAP_ELEMENT( m_labelRandomSeed, "RandomSeed") UI_MAP_ELEMENT( m_labelWorldSize, "WorldSize") UI_MAP_ELEMENT( m_sliderWorldSize, "WorldSizeSlider") - UI_MAP_ELEMENT( m_labelWorldMobCap, "WorldMobCap") UI_MAP_ELEMENT( m_sliderWorldMobCap, "WorldMobCapSlider") UI_MAP_ELEMENT( m_checkboxes[eLaunchCheckbox_Structures], "CheckboxStructures")