diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2019-08-30 23:06:43 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-08-30 22:13:14 -0500 |
commit | 5d30304f4e9ce26d4061cc3697439588126d6bdc (patch) | |
tree | 472495826ce50d849c83025a49c1e8a39939d64d /src/battle_controllers.c | |
parent | 45767f9c0034603e24f07c66485d7967c0f06eef (diff) |
Use OTID constants for CreateMon
Diffstat (limited to 'src/battle_controllers.c')
-rw-r--r-- | src/battle_controllers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle_controllers.c b/src/battle_controllers.c index 4b5bb7a8a..1225d1953 100644 --- a/src/battle_controllers.c +++ b/src/battle_controllers.c @@ -64,7 +64,7 @@ void SetUpBattleVarsAndBirchZigzagoon(void) if (gBattleTypeFlags & BATTLE_TYPE_FIRST_BATTLE) { ZeroEnemyPartyMons(); - CreateMon(&gEnemyParty[0], SPECIES_ZIGZAGOON, 2, 32, 0, 0, 0, 0); + CreateMon(&gEnemyParty[0], SPECIES_ZIGZAGOON, 2, 32, 0, 0, OT_ID_PLAYER_ID, 0); i = 0; SetMonData(&gEnemyParty[0], MON_DATA_HELD_ITEM, &i); } |