diff options
author | Deokishisu <6993375+Deokishisu@users.noreply.github.com> | 2021-03-10 16:22:08 -0500 |
---|---|---|
committer | Deokishisu <6993375+Deokishisu@users.noreply.github.com> | 2021-03-10 16:22:08 -0500 |
commit | 0589bd582764cb84bc759943b727973dd9166bbd (patch) | |
tree | 77e73de8056e1f9804f76cb0e0229b363fb42fa7 /data | |
parent | 42b93f8359b07bc99516f5cf6cf1f42ec65ba029 (diff) |
Fix Typos / Use Box Constants
The Celadon City scripts that give Eevee misspelled it as Eeevee. Fixed.
The comment explaining `boxRSEggsUnlocked` in the `ExternalEventFlags` struct had an incorrect deposit requirement listed and was fixed.
Also, replaced the literals with the `TOTAL_BOXES_COUNT` and `IN_BOX_COUNT` constants in `pokemon.c`'s `IsPokemonStorageFull` function. Thanks hjk321 for pointing that out.
Diffstat (limited to 'data')
-rw-r--r-- | data/maps/CeladonCity_Condominiums_RoofRoom/scripts.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/maps/CeladonCity_Condominiums_RoofRoom/scripts.inc b/data/maps/CeladonCity_Condominiums_RoofRoom/scripts.inc index 04242aeab..54d791f77 100644 --- a/data/maps/CeladonCity_Condominiums_RoofRoom/scripts.inc +++ b/data/maps/CeladonCity_Condominiums_RoofRoom/scripts.inc @@ -13,15 +13,15 @@ CeladonCity_Condominiums_RoofRoom_EventScript_EeveeBall:: @ 816C46D setvar VAR_TEMP_1, SPECIES_EEVEE givemon SPECIES_EEVEE, 25, ITEM_NONE compare VAR_RESULT, 0 - goto_if_eq CeladonCity_Condominiums_RoofRoom_EventScript_GetEeeveeParty + goto_if_eq CeladonCity_Condominiums_RoofRoom_EventScript_GetEeveeParty compare VAR_RESULT, 1 - goto_if_eq CeladonCity_Condominiums_RoofRoom_EventScript_GetEeeveePC + goto_if_eq CeladonCity_Condominiums_RoofRoom_EventScript_GetEeveePC compare VAR_RESULT, 2 goto_if_eq EventScript_NoMoreRoomForPokemon release end -CeladonCity_Condominiums_RoofRoom_EventScript_GetEeeveeParty:: @ 816C4A6 +CeladonCity_Condominiums_RoofRoom_EventScript_GetEeveeParty:: @ 816C4A6 removeobject LOCALID_EEVEE_POKEBALL playfanfare MUS_LEVEL_UP message CeladonCity_Condominiums_RoofRoom_Text_ObtainedAnEevee @@ -36,7 +36,7 @@ CeladonCity_Condominiums_RoofRoom_EventScript_GetEeeveeParty:: @ 816C4A6 goto CeladonCity_Condominiums_RoofRoom_EventScript_SetGotEevee end -CeladonCity_Condominiums_RoofRoom_EventScript_GetEeeveePC:: @ 816C4DA +CeladonCity_Condominiums_RoofRoom_EventScript_GetEeveePC:: @ 816C4DA removeobject LOCALID_EEVEE_POKEBALL playfanfare MUS_LEVEL_UP message CeladonCity_Condominiums_RoofRoom_Text_ObtainedAnEevee |