Remove undefined parameter pass

Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com>
This commit is contained in:
Sirz Benjie 2025-05-21 18:54:40 -05:00
parent 9afdd037fc
commit 4abe3ea566
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -391,7 +391,7 @@ export default class FightUiHandler extends UiHandler implements InfoToggle {
const opponents = (globalScene.getCurrentPhase() as CommandPhase).getPokemon().getOpponents(); const opponents = (globalScene.getCurrentPhase() as CommandPhase).getPokemon().getOpponents();
opponents.forEach(opponent => { opponents.forEach(opponent => {
(opponent as EnemyPokemon).updateEffectiveness(undefined); (opponent as EnemyPokemon).updateEffectiveness();
}); });
} }