diff options
| author | Pepper0ni <93387759+Pepper0ni@users.noreply.github.com> | 2026-09-24 23:38:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-24 22:38:06 +0000 |
| commit | ea4cccc6d98cebca30c77ac80424cb6d0bd1d8d1 (patch) | |
| tree | fb2fb0b563c2ead3b15b9e6dfffe6e6aba71afaf | |
| parent | 479aa26ef4a3d8208c54b9bc1f554c03edbbff9d (diff) | |
fix Ice Cavern Blades Silver Rupee door not opening when silvers are randomised (#7248)
| -rw-r--r-- | soh/soh/Enhancements/randomizer/ShuffleSilver.cpp | 2 |
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; } |
