From 3249b963432d66a3e71d1b9feca8aa4ceefccb52 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 9 Jul 2026 03:15:44 -0400 Subject: [PATCH] [Bugfix] - First quiver starting item causes crash (#6889) --- soh/soh/Enhancements/randomizer/savefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/savefile.cpp b/soh/soh/Enhancements/randomizer/savefile.cpp index f7eaee7ca5..646f787a51 100644 --- a/soh/soh/Enhancements/randomizer/savefile.cpp +++ b/soh/soh/Enhancements/randomizer/savefile.cpp @@ -231,7 +231,7 @@ void SetStartingItems() { uint8_t startBow = Randomizer_GetSettingValue(RSK_STARTING_BOW); if (startBow >= 1) - Item_Give(NULL, ITEM_QUIVER_30); + Item_Give(NULL, ITEM_BOW); if (startBow >= 2) Item_Give(NULL, ITEM_QUIVER_40); if (startBow >= 3)