summaryrefslogtreecommitdiff
path: root/src/battle_tower.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2019-08-30 23:06:43 -0400
committerhuderlem <huderlem@gmail.com>2019-08-30 22:13:14 -0500
commit5d30304f4e9ce26d4061cc3697439588126d6bdc (patch)
tree472495826ce50d849c83025a49c1e8a39939d64d /src/battle_tower.c
parent45767f9c0034603e24f07c66485d7967c0f06eef (diff)
Use OTID constants for CreateMon
Diffstat (limited to 'src/battle_tower.c')
-rw-r--r--src/battle_tower.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle_tower.c b/src/battle_tower.c
index 6f8e3e25f..8ef848e39 100644
--- a/src/battle_tower.c
+++ b/src/battle_tower.c
@@ -3190,7 +3190,7 @@ static void FillPartnerParty(u16 trainerId)
sStevenMons[i].level,
sStevenMons[i].fixedIV,
TRUE, i, // BUG: personality was stored in the 'j' variable. As a result, Steven's pokemon do not have the intended natures.
- TRUE, STEVEN_OTID);
+ OT_ID_PRESET, STEVEN_OTID);
for (j = 0; j < 6; j++)
SetMonData(&gPlayerParty[3 + i], MON_DATA_HP_EV + j, &sStevenMons[i].evs[j]);
for (j = 0; j < MAX_MON_MOVES; j++)