[Bug][Hotfix] Always show hit result message (#5769)

Always show hit result
This commit is contained in:
Dean 2025-05-04 15:35:44 -07:00 committed by GitHub
parent fa774268ca
commit e3028c6219
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}