You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Game freezed multiple times every time my Pokemons where being hit by a lowering stat attack after having Volcanion using Mist. It freezes after the attack dealt its normal damage and before the lowering stat message appears
Reproduction
In my scenario here's what happened:
Have Volcanion use Mist to prevent stats being lowered
Volcanion dies the turn after
Sent Mega Gyarados to then take a Bulldoze
Games freezes on message saying Foe Wailord uses Bulldoze
Expected behavior
Game should not freeze and stat should not be lowered.
Maybe skip the lowering stat message or have a message saying something like Mist protects [your pokemon name] from having its stat lowered
* Cancels the lowering of stats
* @param arena the {@linkcode Arena} containing this effect
* @param simulated `true` if the effect should be applied quietly
* @param cancelled a {@linkcode BooleanHolder} whose value is set to `true`
* to flag the stat reduction as cancelled
* @returns `true` if a stat reduction was cancelled; `false` otherwise
*/
override apply(arena: Arena, simulated: boolean, attacker: Pokemon, cancelled: BooleanHolder): boolean {
// `StatStageChangePhase` currently doesn't have a reference to the source of stat drops,
// so this code currently has no effect on gameplay.
if (attacker) {
const bypassed = new BooleanHolder(false);
// TODO: Allow this to be simulated
applyAbAttrs(InfiltratorAbAttr, attacker, null, false, bypassed);
if (bypassed.value) {
return false;
}
}
Describe the bug
Game freezed multiple times every time my Pokemons where being hit by a lowering stat attack after having Volcanion using Mist. It freezes after the attack dealt its normal damage and before the lowering stat message appears
Reproduction
In my scenario here's what happened:
Foe Wailord uses Bulldoze
Expected behavior
Game should not freeze and stat should not be lowered.
Maybe skip the lowering stat message or have a message saying something like
Mist protects [your pokemon name] from having its stat lowered
Screenshots / Videos
No response
Session export file
sessionData_jaugeobese.txt
User data export file
data_jaugeobese.txt
Additional context
No response
The text was updated successfully, but these errors were encountered: