Skip to content

Commit fcc605e

Browse files
committed
Deprecate the non-RNG Item Printer.
1 parent 033aafc commit fcc605e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

SerialPrograms/Source/PokemonSV/PokemonSV_Panels.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
#include "Programs/Farming/PokemonSV_FlyingTrialFarmer.h"
3232
#include "Programs/Farming/PokemonSV_BBQSoloFarmer.h"
3333
#include "Programs/Farming/PokemonSV_MaterialFarmer.h"
34-
#include "Programs/ItemPrinter/PokemonSV_AutoItemPrinter.h"
3534
#include "Programs/ItemPrinter/PokemonSV_ItemPrinterRNG.h"
3635

3736
#include "Programs/Eggs/PokemonSV_EggFetcher.h"
@@ -59,8 +58,10 @@
5958
#include "Programs/Glitches/PokemonSV_RideCloner-1.0.1.h"
6059
#include "Programs/Glitches/PokemonSV_CloneItems-1.0.1.h"
6160

62-
#include "Programs/TestPrograms/PokemonSV_SoundListener.h"
61+
// Deprecated
62+
#include "Programs/ItemPrinter/PokemonSV_AutoItemPrinter.h"
6363

64+
#include "Programs/TestPrograms/PokemonSV_SoundListener.h"
6465
#include "Programs/FormHunting/PokemonSV_ThreeSegmentDudunsparceFinder.h"
6566

6667
#ifdef PA_OFFICIAL
@@ -88,7 +89,6 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
8889
ret.emplace_back(make_single_switch_program<ClothingBuyer_Descriptor, ClothingBuyer>());
8990
ret.emplace_back(make_single_switch_program<AutonomousBallThrower_Descriptor, AutonomousBallThrower>());
9091
ret.emplace_back(make_single_switch_program<SizeChecker_Descriptor, SizeChecker>());
91-
ret.emplace_back(make_single_switch_program<AutoItemPrinter_Descriptor, AutoItemPrinter>());
9292

9393
// ret.emplace_back("---- Trading ----");
9494
ret.emplace_back(make_multi_switch_program<SelfBoxTrade_Descriptor, SelfBoxTrade>());
@@ -147,6 +147,9 @@ std::vector<PanelEntry> PanelListFactory::make_panels() const{
147147
ret.emplace_back("---- Public Betas ----");
148148
ret.emplace_back(make_single_switch_program<AutoStory_Descriptor, AutoStory>());
149149

150+
ret.emplace_back("---- Deprecated Programs ----");
151+
ret.emplace_back(make_single_switch_program<AutoItemPrinter_Descriptor, AutoItemPrinter>());
152+
150153
if (PreloadSettings::instance().DEVELOPER_MODE || IS_BETA_VERSION){
151154
ret.emplace_back("---- Untested/Beta/WIP ----");
152155
}

0 commit comments

Comments
 (0)