From 06c8ba205d7e416afaf5543601d33074a5e8099f Mon Sep 17 00:00:00 2001 From: viccie211 Date: Thu, 30 Apr 2026 20:03:54 +0200 Subject: [PATCH 1/3] Skipped the free standing rupees in the ingame spoiler log when rupeesanity is disabled --- source/spoiler_log.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/spoiler_log.cpp b/source/spoiler_log.cpp index fe2efb02..9e98c03b 100644 --- a/source/spoiler_log.cpp +++ b/source/spoiler_log.cpp @@ -193,6 +193,9 @@ void WriteIngameSpoilerLog() { loc->GetHintKey() != GF_NORTH_F1_CARPENTER)) { continue; } + else if(loc->IsCategory(Category::cFreestandingRupee) && Settings::ShuffleRupees.Value() == false){ + continue; + } // Copy at most 51 chars from the name and location name to avoid issues with names that don't fit on screen // Only copy enough characters that can fit on the screen From 995094a2969ccda7b10562e732a1e812ea81dc65 Mon Sep 17 00:00:00 2001 From: viccie211 <10045263+viccie211@users.noreply.github.com> Date: Thu, 30 Apr 2026 18:04:31 +0000 Subject: [PATCH 2/3] Auto-format code to match clang rules --- source/spoiler_log.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/spoiler_log.cpp b/source/spoiler_log.cpp index 9e98c03b..894c64bf 100644 --- a/source/spoiler_log.cpp +++ b/source/spoiler_log.cpp @@ -192,8 +192,7 @@ void WriteIngameSpoilerLog() { (Settings::GerudoFortress.Is(GERUDOFORTRESS_FAST) && loc->IsCategory(Category::cVanillaGFSmallKey) && loc->GetHintKey() != GF_NORTH_F1_CARPENTER)) { continue; - } - else if(loc->IsCategory(Category::cFreestandingRupee) && Settings::ShuffleRupees.Value() == false){ + } else if (loc->IsCategory(Category::cFreestandingRupee) && Settings::ShuffleRupees.Value() == false) { continue; } From b9ae97c9024ec200dda12b93c467fbb746ea07a5 Mon Sep 17 00:00:00 2001 From: viccie211 Date: Fri, 1 May 2026 09:17:02 +0200 Subject: [PATCH 3/3] Addressed PR Comments from #817 --- source/spoiler_log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/spoiler_log.cpp b/source/spoiler_log.cpp index 894c64bf..3444c7d6 100644 --- a/source/spoiler_log.cpp +++ b/source/spoiler_log.cpp @@ -192,7 +192,7 @@ void WriteIngameSpoilerLog() { (Settings::GerudoFortress.Is(GERUDOFORTRESS_FAST) && loc->IsCategory(Category::cVanillaGFSmallKey) && loc->GetHintKey() != GF_NORTH_F1_CARPENTER)) { continue; - } else if (loc->IsCategory(Category::cFreestandingRupee) && Settings::ShuffleRupees.Value() == false) { + } else if (loc->IsCategory(Category::cFreestandingRupee) && !Settings::ShuffleRupees) { continue; }