diff options
author | Thomas Winwood <twwinwood@7storm.org> | 2019-11-09 03:17:35 +0000 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-11-09 08:37:45 -0600 |
commit | a727c160129de978c4e6f421747353dea7530d5f (patch) | |
tree | 8234d1e5ca1af5586110933b904bd7f3ac6eeff7 /src | |
parent | a38bff8c17fa416bb7d74db45de0d24a136e2706 (diff) |
Use descriptive constant for ScriptGiveMon call
Diffstat (limited to 'src')
-rw-r--r-- | src/battle_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle_setup.c b/src/battle_setup.c index a978cc24d..77d98def7 100644 --- a/src/battle_setup.c +++ b/src/battle_setup.c @@ -897,7 +897,7 @@ static void CB2_GiveStarter(void) *GetVarPointer(VAR_STARTER_MON) = gSpecialVar_Result; starterMon = GetStarterPokemon(gSpecialVar_Result); - ScriptGiveMon(starterMon, 5, 0, 0, 0, 0); + ScriptGiveMon(starterMon, 5, ITEM_NONE, 0, 0, 0); ResetTasks(); PlayBattleBGM(); SetMainCallback2(CB2_StartFirstBattle); |