From 37a2afeca8690af6fbfb22718714e6f62b67ee79 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 6 Apr 2025 17:17:10 -0400 Subject: Default postgame shuffle to on --- src/ap_state.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ap_state.cpp b/src/ap_state.cpp index a969892..dfb8fe7 100644 --- a/src/ap_state.cpp +++ b/src/ap_state.cpp @@ -503,8 +503,9 @@ struct APState { : kSUNWARP_ACCESS_NORMAL; sunwarp_shuffle = slot_data.contains("shuffle_sunwarps") && slot_data["shuffle_sunwarps"].get() == 1; - postgame_shuffle = slot_data.contains("shuffle_postgame") && - slot_data["shuffle_postgame"].get() == 1; + postgame_shuffle = slot_data.contains("shuffle_postgame") + ? (slot_data["shuffle_postgame"].get() == 1) + : true; if (painting_shuffle && slot_data.contains("painting_entrance_to_exit")) { painting_mapping.clear(); -- cgit 1.4.1