diff options
-rw-r--r-- | Change-Starter-Pokémon.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Change-Starter-Pokémon.md b/Change-Starter-Pokémon.md index 3cfa575..cbf901c 100644 --- a/Change-Starter-Pokémon.md +++ b/Change-Starter-Pokémon.md @@ -35,7 +35,7 @@ static void CB2_GiveStarter(void) BattleTransition_Start(B_TRANSITION_BLUR); } ``` -Interesting for us is the line `ScriptGiveMon(starterMon, 5, 0, 0, 0, 0);`. +Interesting for us is the line `ScriptGiveMon(starterMon, 5, ITEM_NONE, 0, 0, 0);`. ```c u8 ScriptGiveMon(u16 species, u8 level, u16 item, u32 unused1, u32 unused2, u8 unused3) ``` |