mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-15 12:52:20 +02:00
Fix improper i18nkey in moveEffectPhase#applyToTargets
This commit is contained in:
parent
97ed62d5d7
commit
3897d5d17d
@ -219,7 +219,7 @@ export class MoveEffectPhase extends PokemonPhase {
|
|||||||
case HitCheckResult.NO_EFFECT:
|
case HitCheckResult.NO_EFFECT:
|
||||||
globalScene.queueMessage(
|
globalScene.queueMessage(
|
||||||
i18next.t(this.move.id === Moves.SHEER_COLD ? "battle:hitResultImmune" : "battle:hitResultNoEffect", {
|
i18next.t(this.move.id === Moves.SHEER_COLD ? "battle:hitResultImmune" : "battle:hitResultNoEffect", {
|
||||||
pokemonNameWithAffix: getPokemonNameWithAffix(target),
|
pokemonName: getPokemonNameWithAffix(target),
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
case HitCheckResult.NO_EFFECT_NO_MESSAGE:
|
case HitCheckResult.NO_EFFECT_NO_MESSAGE:
|
||||||
|
Loading…
Reference in New Issue
Block a user