Merge pull request #2116 from AgustinGDLV/bolt_beak

fixed bolt beak switch-in boost
This commit is contained in:
ghoulslash 2022-05-07 08:13:05 -04:00 committed by GitHub
commit f821bd313e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8119,7 +8119,8 @@ static u16 CalcMoveBasePower(u16 move, u8 battlerAtk, u8 battlerDef)
basePower *= 2;
break;
case EFFECT_BOLT_BEAK:
if (GetBattlerTurnOrderNum(battlerAtk) < GetBattlerTurnOrderNum(battlerDef))
if (GetBattlerTurnOrderNum(battlerAtk) < GetBattlerTurnOrderNum(battlerDef)
|| gDisableStructs[battlerDef].isFirstTurn == 2)
basePower *= 2;
break;
case EFFECT_ROUND: