mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-05-10 10:24:55 +01:00
[Bug][Hotfix] Always show hit result message (#5769)
Always show hit result
This commit is contained in:
parent
fa774268ca
commit
e3028c6219
@ -944,7 +944,7 @@ export class MoveEffectPhase extends PokemonPhase {
|
||||
|
||||
const result = this.applyMoveDamage(user, target, effectiveness);
|
||||
|
||||
if (user.turnData.hitsLeft === 1 && target.isFainted()) {
|
||||
if (user.turnData.hitsLeft === 1 || target.isFainted()) {
|
||||
this.queueHitResultMessage(result);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user