mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-18 15:00:55 +00:00
Fix reviver seed causing infinite loop and clear status on revive
This commit is contained in:
parent
e0065fca7c
commit
08364d9060
@ -685,6 +685,8 @@ export class PokemonInstantReviveModifier extends PokemonHeldItemModifier {
|
||||
pokemon.scene.unshiftPhase(new PokemonHealPhase(pokemon.scene, pokemon.getBattlerIndex(),
|
||||
Math.max(Math.floor(pokemon.getMaxHp() / 2), 1), getPokemonMessage(pokemon, ` was revived\nby its ${this.type.name}!`), false, false, true));
|
||||
|
||||
pokemon.resetStatus();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -760,9 +760,6 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
||||
}
|
||||
|
||||
heal(amount: integer): void {
|
||||
if (this.isFainted())
|
||||
return;
|
||||
|
||||
this.hp = Math.min(this.hp + amount, this.getMaxHp());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user