diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-04-06 17:17:10 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-04-06 17:17:10 -0400 |
commit | 37a2afeca8690af6fbfb22718714e6f62b67ee79 (patch) | |
tree | 88323a762eca8ee656d2a30ae05ed04062ee9d8d | |
parent | 38636f503c3a1b79d3eeee7d6efe57e9e091c07a (diff) | |
download | lingo-ap-tracker-37a2afeca8690af6fbfb22718714e6f62b67ee79.tar.gz lingo-ap-tracker-37a2afeca8690af6fbfb22718714e6f62b67ee79.tar.bz2 lingo-ap-tracker-37a2afeca8690af6fbfb22718714e6f62b67ee79.zip |
Default postgame shuffle to on
-rw-r--r-- | src/ap_state.cpp | 5 |
1 files 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 { | |||
503 | : kSUNWARP_ACCESS_NORMAL; | 503 | : kSUNWARP_ACCESS_NORMAL; |
504 | sunwarp_shuffle = slot_data.contains("shuffle_sunwarps") && | 504 | sunwarp_shuffle = slot_data.contains("shuffle_sunwarps") && |
505 | slot_data["shuffle_sunwarps"].get<int>() == 1; | 505 | slot_data["shuffle_sunwarps"].get<int>() == 1; |
506 | postgame_shuffle = slot_data.contains("shuffle_postgame") && | 506 | postgame_shuffle = slot_data.contains("shuffle_postgame") |
507 | slot_data["shuffle_postgame"].get<int>() == 1; | 507 | ? (slot_data["shuffle_postgame"].get<int>() == 1) |
508 | : true; | ||
508 | 509 | ||
509 | if (painting_shuffle && slot_data.contains("painting_entrance_to_exit")) { | 510 | if (painting_shuffle && slot_data.contains("painting_entrance_to_exit")) { |
510 | painting_mapping.clear(); | 511 | painting_mapping.clear(); |