summaryrefslogtreecommitdiff
path: root/mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp
diff options
context:
space:
mode:
authorEblo <7004497+Eblo@users.noreply.github.com>2025-10-29 17:24:39 -0400
committerGitHub <noreply@github.com>2025-10-29 17:24:39 -0400
commit84f3aedf609b2795f3ba39612312a948be97fb8b (patch)
tree97aeaf987a150f2af6d222bc91e9924a4587cad3 /mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp
parent78059b1ba9af17e99908201797e0358339c30a3d (diff)
Retire French Vanilla logic setting (#1311)
Diffstat (limited to 'mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp')
-rw-r--r--mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp b/mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp
index 42e712ac5..f41e47afc 100644
--- a/mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp
+++ b/mm/2s2h/Rando/MiscBehavior/OnFileCreate.cpp
@@ -212,7 +212,7 @@ void Rando::MiscBehavior::OnFileCreate(s16 fileNum) {
}
// Skip checks that have been excluded in the Locations menu and add their vanilla item to the
- // pool except if Logic is set to Vanilla or French Vanilla.
+ // pool except if Logic is set to Vanilla.
if (RANDO_SAVE_OPTIONS[RO_LOGIC] <= RO_LOGIC_NEARLY_NO_LOGIC) {
auto it = std::find(excludedChecks.begin(), excludedChecks.end(), randoCheckId);
if (it != excludedChecks.end()) {
@@ -424,8 +424,6 @@ void Rando::MiscBehavior::OnFileCreate(s16 fileNum) {
Rando::Logic::ApplyNearlyNoLogicToSaveContext(checkPool, itemPool);
} else if (RANDO_SAVE_OPTIONS[RO_LOGIC] == RO_LOGIC_GLITCHLESS) {
Rando::Logic::ApplyGlitchlessLogicToSaveContext(checkPool, itemPool);
- } else if (RANDO_SAVE_OPTIONS[RO_LOGIC] == RO_LOGIC_FRENCH_VANILLA) {
- Rando::Logic::ApplyFrenchVanillaLogicToSaveContext(checkPool, itemPool);
} else {
throw std::runtime_error("Logic option not implemented: " +
std::to_string(RANDO_SAVE_OPTIONS[RO_LOGIC]));