diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-03-18 18:24:10 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-03-18 18:24:10 -0400 |
commit | d95cdf42f5259944a12403f483e88f872cbaa88b (patch) | |
tree | 45bbe9d455bf177ac2446aa9a9d16e9b2bd36290 /src | |
parent | 815636f271584b06b778c0d7a3046458e1f42276 (diff) |
Document ShouldIgnoreDeoxysForm, 2
Diffstat (limited to 'src')
-rw-r--r-- | src/pokemon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pokemon.c b/src/pokemon.c index eb6fa27ca..563073237 100644 --- a/src/pokemon.c +++ b/src/pokemon.c @@ -5904,7 +5904,7 @@ bool8 ShouldIgnoreDeoxysForm(u8 caseId, u8 battlerId) case 0: default: return FALSE; - case 1: + case DEOXYS_CHECK_BATTLE_SPRITE: if (!(gBattleTypeFlags & BATTLE_TYPE_MULTI)) return FALSE; if (!gMain.inBattle) @@ -5914,7 +5914,7 @@ bool8 ShouldIgnoreDeoxysForm(u8 caseId, u8 battlerId) break; case 2: break; - case 3: + case DEOXYS_CHECK_TRADE_MAIN: if (!(gBattleTypeFlags & BATTLE_TYPE_MULTI)) return FALSE; if (!gMain.inBattle) @@ -5924,7 +5924,7 @@ bool8 ShouldIgnoreDeoxysForm(u8 caseId, u8 battlerId) return FALSE; case 4: break; - case 5: + case DEOXYS_CHECK_BATTLE_ANIM: if (gBattleTypeFlags & BATTLE_TYPE_LINK) { if (!gMain.inBattle) |