wogikaze

Results 3 comments of wogikaze

`pip uninstall poke-env` and `pip install git+https://github.com/hsahovic/poke-env/` then it will fix them https://github.com/hsahovic/poke-env/commit/21755b520d582c1b7da01125f9f825fcbc8eb2c8 Looks like it hasn't been released since gym was replaced by gymnasium. but I start getting strange...

I got the same error when running my playlist organizer tool. The JSON of `ContentMetadataView` looks a little different, so I'll paste mine as well. ```json { "metadataRows": [ {...

`move.type.damage_multiplier` function need type chart, but `move.type.damage_multiplier` need not it, so I'm using ```py if move.type: moves_dmg_multiplier[i] = battle.opponent_active_pokemon.damage_multiplier(move) ``` insted of ```py if move.type: moves_dmg_multiplier[i] = move.type.damage_multiplier( battle.opponent_active_pokemon.type_1, battle.opponent_active_pokemon.type_2,...