summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPepper0ni <93387759+Pepper0ni@users.noreply.github.com>2026-09-24 23:38:06 +0100
committerGitHub <noreply@github.com>2026-09-24 22:38:06 +0000
commitea4cccc6d98cebca30c77ac80424cb6d0bd1d8d1 (patch)
treefb2fb0b563c2ead3b15b9e6dfffe6e6aba71afaf
parent479aa26ef4a3d8208c54b9bc1f554c03edbbff9d (diff)
fix Ice Cavern Blades Silver Rupee door not opening when silvers are randomised (#7248)
-rw-r--r--soh/soh/Enhancements/randomizer/ShuffleSilver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/soh/Enhancements/randomizer/ShuffleSilver.cpp b/soh/soh/Enhancements/randomizer/ShuffleSilver.cpp
index 805b906d3..0d32ba047 100644
--- a/soh/soh/Enhancements/randomizer/ShuffleSilver.cpp
+++ b/soh/soh/Enhancements/randomizer/ShuffleSilver.cpp
@@ -124,9 +124,9 @@ RandomizerGet SilverFromSwitchFlag(s16 switchFlag) {
return RG_BOTW_SILVER;
case SCENE_ICE_CAVERN:
switch (switchFlag) {
- case 8:
case 9:
return RG_ICE_CAVERN_SILVER_BLOCK;
+ case 8:
case 31:
return RG_ICE_CAVERN_SILVER_BLADES;
}