diff --git a/Useful-Scripting-Specials.md b/Useful-Scripting-Specials.md index 3edc373..8bd6f8c 100644 --- a/Useful-Scripting-Specials.md +++ b/Useful-Scripting-Specials.md @@ -167,12 +167,12 @@ These commands will set either the Seen or the Caught Pokédex flags of a specie 2. Next, our special functions. You can add them to any .c file, although since these are meant to be used from the overworld, I suggest `src/field_specials.c` specifically. ```c -bool8 SetSeenMon(void) +void SetSeenMon(void) { GetSetPokedexFlag(SpeciesToNationalPokedexNum(VarGet(VAR_TEMP_1)), FLAG_SET_SEEN); } -bool8 SetCaughtMon(void) +void SetCaughtMon(void) { GetSetPokedexFlag(SpeciesToNationalPokedexNum(VarGet(VAR_TEMP_1)), FLAG_SET_SEEN); GetSetPokedexFlag(SpeciesToNationalPokedexNum(VarGet(VAR_TEMP_1)), FLAG_SET_CAUGHT);