Fixed Kingra's learnset gen (#4044)
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.
This commit is contained in:
parent
9286b80866
commit
a01d442f36
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue