Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include "CommonFramework/Notifications/EventNotificationsTable.h"
#include "NintendoSwitch/NintendoSwitch_SingleSwitchProgram.h"
#include "NintendoSwitch/NintendoSwitch_Settings.h"
#include "NintendoSwitch/Options/NintendoSwitch_GoHomeWhenDoneOption.h"
#include "PokemonSV/Options/PokemonSV_BBQOption.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,7 @@ void quest_catch(
pbf_press_button(context, BUTTON_HOME, 160ms, GameSettings::instance().GAME_TO_HOME_DELAY1);
home_to_date_time(context, true, true);
PokemonSwSh::roll_date_forward_1(context, true);
pbf_press_button(context, BUTTON_HOME, 160ms, ConsoleSettings::instance().SETTINGS_TO_HOME_DELAY0);
resume_game_from_home(stream, context);

//Heal up and then reset position again.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#define PokemonAutomation_PokemonSV_BlueberryCatchPhoto_H

#include "NintendoSwitch/Controllers/NintendoSwitch_ProController.h"
#include "NintendoSwitch/NintendoSwitch_Settings.h"
#include "PokemonSV/Programs/Farming/PokemonSV_BlueberryQuests.h"
#include "PokemonSV/Options/PokemonSV_BBQOption.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,7 @@ void quest_tera_self_defeat(
pbf_press_button(context, BUTTON_HOME, 160ms, GameSettings::instance().GAME_TO_HOME_DELAY1);
home_to_date_time(context, true, true);
PokemonSwSh::roll_date_forward_1(context, true);
pbf_press_button(context, BUTTON_HOME, 160ms, ConsoleSettings::instance().SETTINGS_TO_HOME_DELAY0);
resume_game_from_home(stream, context);

//Heal up and then reset position again.
Expand Down Expand Up @@ -720,6 +721,7 @@ void quest_sneak_up(
pbf_press_button(context, BUTTON_HOME, 160ms, GameSettings::instance().GAME_TO_HOME_DELAY1);
home_to_date_time(context, true, true);
PokemonSwSh::roll_date_forward_1(context, true);
pbf_press_button(context, BUTTON_HOME, 160ms, ConsoleSettings::instance().SETTINGS_TO_HOME_DELAY0);
resume_game_from_home(stream, context);
context.wait_for_all_requests();
}
Expand Down Expand Up @@ -793,6 +795,7 @@ void quest_wild_tera(
pbf_press_button(context, BUTTON_HOME, 160ms, GameSettings::instance().GAME_TO_HOME_DELAY1);
home_to_date_time(context, true, true);
PokemonSwSh::roll_date_forward_1(context, true);
pbf_press_button(context, BUTTON_HOME, 160ms, ConsoleSettings::instance().SETTINGS_TO_HOME_DELAY0);
resume_game_from_home(stream, context);

//Heal up and then reset position again.
Expand Down