Skip to content

Commit 90f15da

Browse files
committed
Try again to fix SwSh eggs.
1 parent 1761e78 commit 90f15da

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace PokemonAutomation{
2626
const bool IS_BETA_VERSION = true;
2727
const int PROGRAM_VERSION_MAJOR = 0;
2828
const int PROGRAM_VERSION_MINOR = 52;
29-
const int PROGRAM_VERSION_PATCH = 8;
29+
const int PROGRAM_VERSION_PATCH = 10;
3030

3131
const std::string PROGRAM_VERSION_BASE =
3232
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/PokemonSwSh/Programs/EggPrograms/PokemonSwSh_EggAutonomous.cpp

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -563,11 +563,14 @@ size_t EggAutonomous::talk_to_lady_to_fetch_egg(
563563
// break;
564564

565565
default:
566-
OperationFailedException::fire(
567-
ErrorReport::SEND_ERROR_REPORT,
568-
"Cannot detect dialog selection arrow when talking to Nursery lady.",
569-
env.console
570-
);
566+
env.log("Daycare lady not found.");
567+
env.console.overlay().add_log("No daycare lady", COLOR_WHITE);
568+
return num_eggs_retrieved;
569+
// OperationFailedException::fire(
570+
// ErrorReport::SEND_ERROR_REPORT,
571+
// "Cannot detect dialog selection arrow when talking to Nursery lady.",
572+
// env.console
573+
// );
571574
}
572575

573576
// If dialog over is not detected:

0 commit comments

Comments
 (0)