mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 17:12:44 +02:00
[Bug] Fix improper critical hit key in move effect phase (#5713)
This commit is contained in:
parent
0a48726e70
commit
a036f865f0
@ -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