Skip to content

Commit 3948c27

Browse files
authored
Plza friendship farmer (#812)
* Create Freindship Farmer program for ZA * Fix typo * Implement OverworldPartySelectionWatcher
1 parent 8abca9f commit 3948c27

File tree

4 files changed

+645
-0
lines changed

4 files changed

+645
-0
lines changed

SerialPrograms/Source/PokemonLZA/PokemonLZA_Panels.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "Programs/Trading/PokemonLZA_SelfBoxTrade.h"
2020

2121
// Farming
22+
#include "Programs/Farming/PokemonLZA_FriendshipFarmer.h"
2223
#include "Programs/Farming/PokemonLZA_RestaurantFarmer.h"
2324
#include "Programs/Farming/PokemonLZA_JacintheInfiniteFarmer.h"
2425
#include "Programs/Farming/PokemonLZA_MegaShardFarmer.h"
@@ -67,6 +68,7 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
6768
ret.emplace_back(make_single_switch_program<MegaShardFarmer_Descriptor, MegaShardFarmer>());
6869
ret.emplace_back(make_single_switch_program<JacintheInfiniteFarmer_Descriptor, JacintheInfiniteFarmer>());
6970
if (IS_BETA_VERSION){
71+
ret.emplace_back(make_single_switch_program<FriendshipFarmer_Descriptor, FriendshipFarmer>());
7072
}
7173

7274
ret.emplace_back("---- Shiny Hunting ----");

0 commit comments

Comments
 (0)