mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-18 15:00:55 +00:00
[Bug] Fix Parental Bond multiplier sometimes applying during first strike (#2653)
This commit is contained in:
parent
23a1c461a9
commit
f9d8bd6e7d
@ -1300,7 +1300,7 @@ export class AddSecondStrikeAbAttr extends PreAttackAbAttr {
|
||||
hitCount.value *= 2;
|
||||
}
|
||||
|
||||
if (!!multiplier?.value && pokemon.turnData.hitsLeft % 2 === 1) {
|
||||
if (!!multiplier?.value && pokemon.turnData.hitsLeft % 2 === 1 && pokemon.turnData.hitsLeft !== pokemon.turnData.hitCount) {
|
||||
multiplier.value *= this.damageMultiplier;
|
||||
}
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user