summaryrefslogtreecommitdiff
path: root/src/pokemon.c
diff options
context:
space:
mode:
authorMelody <melody@pallet.town>2018-12-03 08:01:52 -0500
committerMelody <melody@pallet.town>2018-12-03 08:01:52 -0500
commit2779421ad479312eba5a0fc5bb993473e83465ee (patch)
treea51e29081eac2e8ee9da240d8a58705a1a0d3ef8 /src/pokemon.c
parent52fa5137c95a3bbdf3bf29d594e66948bf7382ae (diff)
fix brendan/may/wally consistency issues
Diffstat (limited to 'src/pokemon.c')
-rw-r--r--src/pokemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon.c b/src/pokemon.c
index d4d9f2ac1..9c8836e2c 100644
--- a/src/pokemon.c
+++ b/src/pokemon.c
@@ -7113,9 +7113,9 @@ u16 FacilityClassToPicIndex(u16 facilityClass)
u16 PlayerGenderToFrontTrainerPicId(u8 playerGender)
{
if (playerGender != MALE)
- return FacilityClassToPicIndex(FACILITY_CLASS_PKMN_TRAINER_MAY);
+ return FacilityClassToPicIndex(FACILITY_CLASS_MAY);
else
- return FacilityClassToPicIndex(FACILITY_CLASS_PKMN_TRAINER_BRENDAN);
+ return FacilityClassToPicIndex(FACILITY_CLASS_BRENDAN);
}
void HandleSetPokedexFlag(u16 nationalNum, u8 caseId, u32 personality)