Skip to content

Commit

Permalink
Unlock tourney 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Dec 30, 2023
1 parent 49d3f21 commit 77ce5ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ bool NormalBattleMenuDetector::move_to_slot(ConsoleHandle& console, BotBaseConte
context.wait_for(std::chrono::milliseconds(500));
continue;
// static int c = 0;
// screen->save("bad-" + std::to_string(c++) + ".png"); // REMOVE
// screen->save("bad-" + std::to_string(c++) + ".png");
// return false;
}
if (attempts > 10){
Expand All @@ -81,7 +81,7 @@ bool NormalBattleMenuDetector::move_to_slot(ConsoleHandle& console, BotBaseConte
switch (diff){
case 0:{
// static int c = 0;
// screen->save("good-" + std::to_string(c++) + ".png"); // REMOVE
// screen->save("good-" + std::to_string(c++) + ".png");
return true;
}
case 1:
Expand Down
4 changes: 1 addition & 3 deletions SerialPrograms/Source/PokemonSV/PokemonSV_Panels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,7 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
ret.emplace_back(make_single_switch_program<AuctionFarmer_Descriptor, AuctionFarmer>());
ret.emplace_back(make_single_switch_program<ESPTraining_Descriptor, ESPTraining>());
ret.emplace_back(make_single_switch_program<TournamentFarmer_Descriptor, TournamentFarmer>());
if (PreloadSettings::instance().DEVELOPER_MODE){
ret.emplace_back(make_single_switch_program<TournamentFarmer2_Descriptor, TournamentFarmer2>());
}
ret.emplace_back(make_single_switch_program<TournamentFarmer2_Descriptor, TournamentFarmer2>());
ret.emplace_back(make_single_switch_program<FlyingTrialFarmer_Descriptor, FlyingTrialFarmer>());

ret.emplace_back("---- Eggs ----");
Expand Down

0 comments on commit 77ce5ce

Please sign in to comment.