diff options
author | GriffinR <25753467+GriffinRichards@users.noreply.github.com> | 2019-08-02 10:58:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-02 10:58:03 -0400 |
commit | cf253062b9cc40f72bc3f1008b9cfa02cf123d10 (patch) | |
tree | d2c304b50091c64e1b344c30f070365ff3129bc2 /src | |
parent | a9247181e8d24836b7d8a0d9603b7dcef1853f34 (diff) |
Use MAPSEC constants in sWallyAdditionalData
Diffstat (limited to 'src')
-rw-r--r-- | src/pokenav_match_call_data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pokenav_match_call_data.c b/src/pokenav_match_call_data.c index e89cd1887..d33f30c1c 100644 --- a/src/pokenav_match_call_data.c +++ b/src/pokenav_match_call_data.c @@ -474,10 +474,10 @@ static const match_call_text_data_t sWallyTextScripts[] = { }; const struct MatchCallSubstruct2 sWallyAdditionalData[] = { - { FLAG_HIDE_MAUVILLE_CITY_WALLY, 0x05 }, - { FLAG_GROUDON_AWAKENED_MAGMA_HIDEOUT, 0xD5 }, - { FLAG_HIDE_VICTORY_ROAD_ENTRANCE_WALLY, 0x46 }, - { 0xFFFF, 0xD5 } + { FLAG_HIDE_MAUVILLE_CITY_WALLY, MAPSEC_VERDANTURF_TOWN }, + { FLAG_GROUDON_AWAKENED_MAGMA_HIDEOUT, MAPSEC_NONE }, + { FLAG_HIDE_VICTORY_ROAD_ENTRANCE_WALLY, MAPSEC_VICTORY_ROAD }, + { 0xFFFF, MAPSEC_NONE } }; static const struct MatchCallStruct2 sWallyMatchCallHeader = |