From 16ee01404aa8d1d9d005890e373b1a23fad1b7eb Mon Sep 17 00:00:00 2001 From: OtherBlue <93625085+OtherBlue@users.noreply.github.com> Date: Mon, 26 Jan 2026 00:26:16 -0300 Subject: [PATCH] small patch to match 2ship (#6197) --- soh/soh/Enhancements/ItemUnequip.cpp | 4 ++++ soh/soh/SohGui/SohMenuEnhancements.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/ItemUnequip.cpp b/soh/soh/Enhancements/ItemUnequip.cpp index 338a1b36b..df590fe25 100644 --- a/soh/soh/Enhancements/ItemUnequip.cpp +++ b/soh/soh/Enhancements/ItemUnequip.cpp @@ -65,6 +65,10 @@ void RegisterItemUnequip() { shouldUnequip = true; } else if (cursorItem == ITEM_ARROW_LIGHT && equippedItem == ITEM_BOW_ARROW_LIGHT) { shouldUnequip = true; + } else if (cursorItem == ITEM_BOW && + (equippedItem == ITEM_BOW_ARROW_FIRE || equippedItem == ITEM_BOW_ARROW_ICE || + equippedItem == ITEM_BOW_ARROW_LIGHT)) { + shouldUnequip = true; } if (shouldUnequip) { diff --git a/soh/soh/SohGui/SohMenuEnhancements.cpp b/soh/soh/SohGui/SohMenuEnhancements.cpp index accd7a664..d18292fd1 100644 --- a/soh/soh/SohGui/SohMenuEnhancements.cpp +++ b/soh/soh/SohGui/SohMenuEnhancements.cpp @@ -752,7 +752,7 @@ void SohMenu::AddMenuEnhancements() { .Options(CheckboxOptions().Tooltip( "Equip items and equipment on the D-pad. If used with \"D-pad on Pause Screen\", you must " "hold C-Up to equip instead of navigate.")); - AddWidget(path, "Unequip C-Items on Re-press", WIDGET_CVAR_CHECKBOX) + AddWidget(path, "Allow unequipping Items", WIDGET_CVAR_CHECKBOX) .CVar(CVAR_ENHANCEMENT("ItemUnequip")) .Options(CheckboxOptions().Tooltip("Allows unequipping items from C-Buttons/D-pad by hovering over an equipped " "item and pressing the button it's equipped to."));