mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-06 16:32:16 +02:00
Fix improper critical hit key in move effect phase
This commit is contained in:
parent
42f291eab3
commit
1f8950289b
@ -859,7 +859,7 @@ export class MoveEffectPhase extends PokemonPhase {
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (isCritical) {
|
if (isCritical) {
|
||||||
globalScene.queueMessage(i18next.t("battle:criticalHit"));
|
globalScene.queueMessage(i18next.t("battle:hitResultCriticalHit"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (damage <= 0) {
|
if (damage <= 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user