@@ -109,7 +109,7 @@ std::vector<std::unique_ptr<AutoStory_Segment>> make_autoStory_segment_list(){
109109 segment_list.emplace_back (std::make_unique<AutoStory_Segment_30>());
110110 segment_list.emplace_back (std::make_unique<AutoStory_Segment_31>());
111111 segment_list.emplace_back (std::make_unique<AutoStory_Segment_32>());
112- // segment_list.emplace_back(std::make_unique<AutoStory_Segment_33>());
112+ segment_list.emplace_back (std::make_unique<AutoStory_Segment_33>());
113113 // segment_list.emplace_back(std::make_unique<AutoStory_Segment_34>());
114114 // segment_list.emplace_back(std::make_unique<AutoStory_Segment_35>());
115115
@@ -253,7 +253,7 @@ AutoStory::AutoStory()
253253 " For Start Points that are at Pokecenters, ensure that you fly there so that your character is in the exactly correct start position."
254254 }
255255 , MAINSTORY_NOTE{
256- " Ensure you have a level 100 Gardevoir with the moves in the following order: Moonblast, Dazzling Gleam, Psychic, Mystical Fire.<br>"
256+ " Ensure you have a level 100 Gardevoir with the moves in the following order: Moonblast, Dazzling Gleam, Mystical Fire, Misty Terrain .<br>"
257257 " Also, make sure you have two other strong pokemon (e.g. level 100 Talonflames)<br>"
258258 " Refer to the documentation on github for more details."
259259 }
@@ -537,10 +537,10 @@ AutoStory::AutoStory()
537537}
538538
539539void AutoStory::on_config_value_changed (void * object){
540- ConfigOptionState state = (STARTPOINT_TUTORIAL.index () <= 1 && STORY_SECTION == StorySection::TUTORIAL)
541- ? ConfigOptionState::ENABLED
542- : ConfigOptionState::HIDDEN;
543- STARTERCHOICE.set_visibility (state);
540+ // ConfigOptionState state = (STARTPOINT_TUTORIAL.index() <= 1 && STORY_SECTION == StorySection::TUTORIAL)
541+ // ? ConfigOptionState::ENABLED
542+ // : ConfigOptionState::HIDDEN;
543+ // STARTERCHOICE.set_visibility(state);
544544
545545 if (STORY_SECTION == StorySection::TUTORIAL){
546546 STARTPOINT_TUTORIAL.set_visibility (ConfigOptionState::ENABLED);
@@ -730,10 +730,15 @@ void AutoStory::test_checkpoints(
730730 checkpoint_list.push_back ([&](){checkpoint_84 (env, context, notif_status_update, stats);});
731731 checkpoint_list.push_back ([&](){checkpoint_85 (env, context, notif_status_update, stats);});
732732 checkpoint_list.push_back ([&](){checkpoint_86 (env, context, notif_status_update, stats);});
733- checkpoint_list.push_back ([&](){checkpoint_87 (env, context, notif_status_update, stats);});
733+ checkpoint_list.push_back ([&](){checkpoint_87 (env, context, notif_status_update, stats, language, starter_choice );});
734734 checkpoint_list.push_back ([&](){checkpoint_88 (env, context, notif_status_update, stats);});
735735 checkpoint_list.push_back ([&](){checkpoint_89 (env, context, notif_status_update, stats);});
736736 checkpoint_list.push_back ([&](){checkpoint_90 (env, context, notif_status_update, stats);});
737+ checkpoint_list.push_back ([&](){checkpoint_91 (env, context, notif_status_update, stats);});
738+ checkpoint_list.push_back ([&](){checkpoint_92 (env, context, notif_status_update, stats);});
739+ checkpoint_list.push_back ([&](){checkpoint_93 (env, context, notif_status_update, stats);});
740+ checkpoint_list.push_back ([&](){checkpoint_94 (env, context, notif_status_update, stats);});
741+ checkpoint_list.push_back ([&](){checkpoint_95 (env, context, notif_status_update, stats);});
737742
738743
739744 if (end == 0 ){
0 commit comments