diff options
| author | Pepper0ni <93387759+Pepper0ni@users.noreply.github.com> | 2025-01-02 16:44:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-02 09:44:15 -0700 |
| commit | 0d0e03bedcad5bbef2364d41376cedb401b19401 (patch) | |
| tree | b82504c94d1fec6ead803d0a4f4fc5016448b8c2 | |
| parent | 396e2fd5ffd3a8776b7d7719e57dbdf8b6fd1f25 (diff) | |
fix cheese logic (#4786)
| -rw-r--r-- | soh/soh/Enhancements/randomizer/3drando/hint_list.cpp | 2 | ||||
| -rw-r--r-- | soh/soh/Enhancements/randomizer/3drando/location_access.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp b/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp index 043e980f3..49d090a26 100644 --- a/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp +++ b/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp @@ -2786,7 +2786,7 @@ void StaticData::HintTable_Init() { | ALTAR TEXT | ---------------------------*/ - hintTextTable[RHT_CHILD_ALTAR_STONES] = HintText(CustomMessage("3 Spiritual Stone's found in Hyrule...^$0#[[1]]#...^$1#[[2]]#...^$2#[[3]]#...^", + hintTextTable[RHT_CHILD_ALTAR_STONES] = HintText(CustomMessage("3 Spiritual Stones found in Hyrule...^$0#[[1]]#...^$1#[[2]]#...^$2#[[3]]#...^", /*german*/ "Drei Heilige Steine, zu finden in Hyrule...$0#[[1]]#...^$1#[[2]]#...^$2#[[3]]#...^", /*french*/ "Les trois Pierres Ancestrales cachées&dans Hyrule...$0#[[1]]#...^$1#[[2]]#...^$2#[[3]]#...^", {QM_GREEN, QM_RED, QM_BLUE}, {true, true, true})); diff --git a/soh/soh/Enhancements/randomizer/3drando/location_access.cpp b/soh/soh/Enhancements/randomizer/3drando/location_access.cpp index ff4af35f4..725844f10 100644 --- a/soh/soh/Enhancements/randomizer/3drando/location_access.cpp +++ b/soh/soh/Enhancements/randomizer/3drando/location_access.cpp @@ -263,7 +263,7 @@ void RegionTable_Init() { }, { //Locations LOCATION(RC_LINKS_POCKET, true), - LOCATION(RC_TRIFORCE_COMPLETED, logic->GetSaveContext()->triforcePiecesCollected >= ctx->GetOption(RSK_TRIFORCE_HUNT_PIECES_REQUIRED).GetContextOptionIndex();), + LOCATION(RC_TRIFORCE_COMPLETED, logic->GetSaveContext()->triforcePiecesCollected >= ctx->GetOption(RSK_TRIFORCE_HUNT_PIECES_REQUIRED).GetContextOptionIndex() + 1;), LOCATION(RC_SARIA_SONG_HINT, logic->CanUse(RG_SARIAS_SONG)), }, { //Exits |
