privated retrieveField

This commit is contained in:
frutescens 2024-09-24 15:27:19 -07:00
parent 03ace56dc4
commit f7b759ca7d

View File

@ -937,7 +937,7 @@ class ImprisonTag extends ArenaTrapTag {
* @param scene medium to retrieve the involved Pokemon
* @returns list of PlayerPokemon or EnemyPokemon on the field
*/
retrieveField(scene: BattleScene): PlayerPokemon[] | EnemyPokemon[] {
private retrieveField(scene: BattleScene): PlayerPokemon[] | EnemyPokemon[] {
if (!this.source.isPlayer()) {
return scene.getPlayerField();
}