Skip to content

Commit 0c8ff6a

Browse files
committed
SewerHunter: remove skrelp from ariados route
1 parent 2dbf46f commit 0c8ff6a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ ShinyHunt_SewerHunter::ShinyHunt_SewerHunter()
6464
{Route::LITWICK_SKRELP, "litwick_skrelp", "Litwick+Skrelp+Haunter"},
6565
{Route::SKRELP, "skrelp", "Skrelp"},
6666
{Route::SKRELP_INKAY, "skrelp_inkay", "Skrelp+Inkay"},
67-
{Route::SKRELP_ARIADOS, "skrelp_ariados", "Skrelp+Ariados"},
67+
{Route::ARIADOS, "ariados", "Ariados"},
6868
},
6969
LockMode::LOCK_WHILE_RUNNING,
7070
Route::KLEFKI
@@ -157,7 +157,7 @@ void route_skrelp_inkay(SingleSwitchProgramEnvironment& env, ProControllerContex
157157
fly_back_to_sewers_entrance(env.console, context);
158158
}
159159

160-
void route_skrelp_ariados(SingleSwitchProgramEnvironment& env, ProControllerContext& context){
160+
void route_ariados(SingleSwitchProgramEnvironment& env, ProControllerContext& context){
161161
run_forward_backward_to_wall(env, context, 6s);
162162
}
163163

@@ -199,8 +199,8 @@ void ShinyHunt_SewerHunter::program(SingleSwitchProgramEnvironment& env, ProCont
199199
case Route::SKRELP_INKAY:
200200
route = route_skrelp_inkay;
201201
break;
202-
case Route::SKRELP_ARIADOS:
203-
route = route_skrelp_ariados;
202+
case Route::ARIADOS:
203+
route = route_ariados;
204204
break;
205205
default:
206206
OperationFailedException::fire(

SerialPrograms/Source/PokemonLZA/Programs/ShinyHunting/PokemonLZA_SewerHunter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class ShinyHunt_SewerHunter : public SingleSwitchProgramInstance {
4141
LITWICK_SKRELP,
4242
SKRELP,
4343
SKRELP_INKAY,
44-
SKRELP_ARIADOS
44+
ARIADOS
4545
};
4646

4747
private:

0 commit comments

Comments
 (0)