summaryrefslogtreecommitdiff
path: root/src/contest_effect.c
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-06-21 15:04:48 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-06-21 15:04:48 -0400
commit54cda0308707ace7055cc8ea6f4e698e6324f911 (patch)
treeda994718bb835a0d69103aafd6b6b3f90194aaee /src/contest_effect.c
parent75b2298d37fa39077f7d5b930c0629ad5064ab84 (diff)
Sync more contest docs from Emerald
Diffstat (limited to 'src/contest_effect.c')
-rw-r--r--src/contest_effect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contest_effect.c b/src/contest_effect.c
index 2cd1e5828..7c52e8075 100644
--- a/src/contest_effect.c
+++ b/src/contest_effect.c
@@ -501,7 +501,7 @@ static void ContestEffect_BadlyStartlesMonsInGoodCondition(void)
// The appeal works great if performed first.
static void ContestEffect_BetterIfFirst(void)
{
- if (gUnknown_02038696[shared192D0.contestant] == 0)
+ if (gContestantTurnOrder[shared192D0.contestant] == 0)
{
u16 move = sContestantStatus[shared192D0.contestant].currMove;
sContestantStatus[shared192D0.contestant].appeal2 += 2 * gContestEffects[gContestMoves[move].effect].appeal;
@@ -512,7 +512,7 @@ static void ContestEffect_BetterIfFirst(void)
// The appeal works great if performed last.
static void ContestEffect_BetterIfLast(void)
{
- if (gUnknown_02038696[shared192D0.contestant] == 3)
+ if (gContestantTurnOrder[shared192D0.contestant] == 3)
{
u16 move = sContestantStatus[shared192D0.contestant].currMove;
sContestantStatus[shared192D0.contestant].appeal2 += 2 * gContestEffects[gContestMoves[move].effect].appeal;