From 0c8ff6acd3062832e3a9403150cdb095ab689580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=86=E2=9C=A0Sa=CD=A5b=CD=A3e=CD=ABr=F0=9F=91=91?= =?UTF-8?q?=E2=B0=80?= Date: Wed, 17 Dec 2025 10:56:43 +0800 Subject: [PATCH] SewerHunter: remove skrelp from ariados route --- .../Programs/ShinyHunting/PokemonLZA_SewerHunter.cpp | 8 ++++---- .../Programs/ShinyHunting/PokemonLZA_SewerHunter.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.cpp b/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.cpp index 3788e32f1..bdfaa0978 100644 --- a/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.cpp +++ b/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.cpp @@ -64,7 +64,7 @@ ShinyHunt_SewerHunter::ShinyHunt_SewerHunter() {Route::LITWICK_SKRELP, "litwick_skrelp", "Litwick+Skrelp+Haunter"}, {Route::SKRELP, "skrelp", "Skrelp"}, {Route::SKRELP_INKAY, "skrelp_inkay", "Skrelp+Inkay"}, - {Route::SKRELP_ARIADOS, "skrelp_ariados", "Skrelp+Ariados"}, + {Route::ARIADOS, "ariados", "Ariados"}, }, LockMode::LOCK_WHILE_RUNNING, Route::KLEFKI @@ -157,7 +157,7 @@ void route_skrelp_inkay(SingleSwitchProgramEnvironment& env, ProControllerContex fly_back_to_sewers_entrance(env.console, context); } -void route_skrelp_ariados(SingleSwitchProgramEnvironment& env, ProControllerContext& context){ +void route_ariados(SingleSwitchProgramEnvironment& env, ProControllerContext& context){ run_forward_backward_to_wall(env, context, 6s); } @@ -199,8 +199,8 @@ void ShinyHunt_SewerHunter::program(SingleSwitchProgramEnvironment& env, ProCont case Route::SKRELP_INKAY: route = route_skrelp_inkay; break; - case Route::SKRELP_ARIADOS: - route = route_skrelp_ariados; + case Route::ARIADOS: + route = route_ariados; break; default: OperationFailedException::fire( diff --git a/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.h b/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.h index ddccf60d7..f6a265460 100644 --- a/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.h +++ b/SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.h @@ -41,7 +41,7 @@ class ShinyHunt_SewerHunter : public SingleSwitchProgramInstance { LITWICK_SKRELP, SKRELP, SKRELP_INKAY, - SKRELP_ARIADOS + ARIADOS }; private: