Skip to content

Commit

Permalink
Move WildItenFarmer to the glitches section.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Feb 1, 2024
1 parent c88d5a5 commit be9c08d
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions SerialPrograms/Source/PokemonSV/PokemonSV_Panels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
ret.emplace_back(make_single_switch_program<ClothingBuyer_Descriptor, ClothingBuyer>());
ret.emplace_back(make_single_switch_program<AutonomousBallThrower_Descriptor, AutonomousBallThrower>());
ret.emplace_back(make_single_switch_program<SizeChecker_Descriptor, SizeChecker>());
if (IS_BETA_VERSION){
ret.emplace_back(make_single_switch_program<AutoItemPrinter_Descriptor, AutoItemPrinter>());
}
ret.emplace_back(make_single_switch_program<AutoItemPrinter_Descriptor, AutoItemPrinter>());

// ret.emplace_back("---- Trading ----");
ret.emplace_back(make_multi_switch_program<SelfBoxTrade_Descriptor, SelfBoxTrade>());
Expand All @@ -104,9 +102,6 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
ret.emplace_back(make_single_switch_program<TournamentFarmer_Descriptor, TournamentFarmer>());
ret.emplace_back(make_single_switch_program<TournamentFarmer2_Descriptor, TournamentFarmer2>());
ret.emplace_back(make_single_switch_program<FlyingTrialFarmer_Descriptor, FlyingTrialFarmer>());
if (IS_BETA_VERSION){
ret.emplace_back(make_single_switch_program<WildItemFarmer_Descriptor, WildItemFarmer>());
}

ret.emplace_back("---- Eggs ----");
ret.emplace_back(make_single_switch_program<EggFetcher_Descriptor, EggFetcher>());
Expand All @@ -132,7 +127,10 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
ret.emplace_back(make_single_switch_program<ShinyHuntAreaZeroPlatform_Descriptor, ShinyHuntAreaZeroPlatform>());
ret.emplace_back(make_single_switch_program<ShinyHuntScatterbug_Descriptor, ShinyHuntScatterbug>());

ret.emplace_back("---- Glitches ----");
ret.emplace_back("---- Glitches (v3.0.0) ----");
ret.emplace_back(make_single_switch_program<WildItemFarmer_Descriptor, WildItemFarmer>());

ret.emplace_back("---- Glitches (v1.0.1) ----");
ret.emplace_back(make_single_switch_program<RideCloner101_Descriptor, RideCloner101>());
ret.emplace_back(make_single_switch_program<CloneItems101_Descriptor, CloneItems101>());

Expand Down

0 comments on commit be9c08d

Please sign in to comment.