diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-13 19:10:23 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-15 14:32:30 -0400 |
commit | c42c1ab8c1aaab06350ba71ceb5b89db42d3d851 (patch) | |
tree | 3d8e18d050b3f9cf30b6c2ac1f7d62199e94df49 /src/contest_ai.c | |
parent | 3779422489e81c139ece633e1b6409b06d228d7c (diff) |
Document contest appeal
Diffstat (limited to 'src/contest_ai.c')
-rw-r--r-- | src/contest_ai.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contest_ai.c b/src/contest_ai.c index 7585cac69..45fd761f5 100644 --- a/src/contest_ai.c +++ b/src/contest_ai.c @@ -1200,7 +1200,7 @@ static void ContestAICmd_get_used_combo_starter(void) u16 result = FALSE; u8 contestant = GetContestantIdByTurn(gAIScriptPtr[1]); - if (sub_80DE1E8(contestant)) + if (IsContestantAllowedToCombo(contestant)) result = gContestMoves[eContestantStatus[contestant].prevMove].comboStarterId ? TRUE : FALSE; eContestAI.scriptResult = result; |