Skip to content

Commit

Permalink
Fixed Kingra's learnset gen (rh-hideout#4044)
Browse files Browse the repository at this point in the history
In level_up_learnsets.h, Kingdra's learnset was inside a check for P_GEN_4_CROSS_EVOS. As a Gen 2 Pokemon, this has been updated to check for P_GEN_2_CROSS_EVOS instead.
  • Loading branch information
Skyeward authored Jan 21, 2024
1 parent 9286b80 commit a01d442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/pokemon/level_up_learnsets.h
Original file line number Diff line number Diff line change
Expand Up @@ -3479,7 +3479,7 @@ static const struct LevelUpMove sSeadraLevelUpLearnset[] = {
LEVEL_UP_END
};

#if P_GEN_4_CROSS_EVOS
#if P_GEN_2_CROSS_EVOS
static const struct LevelUpMove sKingdraLevelUpLearnset[] = {
LEVEL_UP_MOVE( 1, MOVE_HYDRO_PUMP),
LEVEL_UP_MOVE( 1, MOVE_YAWN),
Expand Down

0 comments on commit a01d442

Please sign in to comment.