Merge branch 'beta' into refactor-move-phase

This commit is contained in:
NightKev 2024-09-14 06:24:05 -07:00 committed by GitHub
commit 0aa1a01568
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2615,7 +2615,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
if (result === HitResult.IMMUNE) {
this.scene.queueMessage(i18next.t("battle:hitResultImmune", { pokemonName: getPokemonNameWithAffix(this) }));
} else {
this.scene.queueMessage(i18next.t("battle:hitResultNoEffect"));
this.scene.queueMessage(i18next.t("battle:hitResultNoEffect", { pokemonName: getPokemonNameWithAffix(this) }));
}
}
return result;