Merge pull request #2365 from AsparagusEduardo/RHH/pr/BattleArenaBide

Added missing Bide exception to Battle Arena Mind Points
This commit is contained in:
ghoulslash 2022-10-07 10:32:47 -04:00 committed by GitHub
commit 7c7eb8ac7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -372,7 +372,8 @@ void BattleArena_AddMindPoints(u8 battler)
else if (gBattleMoves[gCurrentMove].power != 0
&& gBattleMoves[gCurrentMove].effect != EFFECT_COUNTER
&& gBattleMoves[gCurrentMove].effect != EFFECT_MIRROR_COAT
&& gBattleMoves[gCurrentMove].effect != EFFECT_METAL_BURST)
&& gBattleMoves[gCurrentMove].effect != EFFECT_METAL_BURST
&& gBattleMoves[gCurrentMove].effect != EFFECT_BIDE)
{
gBattleStruct->arenaMindPoints[battler]++;
}