File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ namespace PokemonAutomation{
3636#endif
3737
3838#ifndef PA_VERSION_PATCH
39- #define PA_VERSION_PATCH 2
39+ #define PA_VERSION_PATCH 4
4040#endif
4141
4242const bool IS_BETA_VERSION = PA_IS_BETA;
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
4747 ret.emplace_back (make_single_switch_program<PickupFarmer_Descriptor, PickupFarmer>());
4848 ret.emplace_back (make_single_switch_program<EvTrainer_Descriptor, EvTrainer>());
4949 if (PreloadSettings::instance ().DEVELOPER_MODE ){
50- ret.emplace_back (make_single_switch_program<LuckyEggFarmer_Descriptor, LuckyEggFarmer>());
5150 }
5251
5352 // ret.emplace_back("---- General ----");
@@ -58,11 +57,13 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
5857 ret.emplace_back (make_single_switch_program<ShinyHuntFishing_Descriptor, ShinyHuntFishing>());
5958 ret.emplace_back (make_single_switch_program<ShinyHuntOverworld_Descriptor, ShinyHuntOverworld>());
6059 ret.emplace_back (make_single_switch_program<PrizeCornerReset_Descriptor, PrizeCornerReset>());
60+
6161 if (IS_BETA_VERSION || PreloadSettings::instance ().DEVELOPER_MODE ){
62+ ret.emplace_back (" ---- Untested/Beta/WIP ----" );
63+ ret.emplace_back (make_single_switch_program<LuckyEggFarmer_Descriptor, LuckyEggFarmer>());
6264 ret.emplace_back (make_single_switch_program<LegendaryRunAway_Descriptor, LegendaryRunAway>());
6365 ret.emplace_back (make_single_switch_program<RngHelper_Descriptor, RngHelper>());
6466 }
65-
6667
6768 if (PreloadSettings::instance ().DEVELOPER_MODE ){
6869 ret.emplace_back (" ---- Developer Tools ----" );
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
3434 ret.emplace_back (" ---- General ----" );
3535 if (IS_BETA_VERSION || PreloadSettings::instance ().DEVELOPER_MODE ){
3636 // Locking behind dev mode for now since this program is destructive and deletes your cloud island
37+ }
38+
39+ if (IS_BETA_VERSION || PreloadSettings::instance ().DEVELOPER_MODE ){
40+ ret.emplace_back (" ---- Untested/Beta/WIP ----" );
3741 ret.emplace_back (make_single_switch_program<CloudIslandReset_Descriptor, CloudIslandReset>());
3842 }
3943
You can’t perform that action at this time.
0 commit comments