mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Pokemon Emerald: Fix opponent trainer moves sometimes being MOVE_NONE (#2487)
This commit is contained in:
@@ -677,7 +677,7 @@ class PokemonEmeraldWorld(World):
|
|||||||
level_up_movepool = list({
|
level_up_movepool = list({
|
||||||
move.move_id
|
move.move_id
|
||||||
for move in new_species.learnset
|
for move in new_species.learnset
|
||||||
if move.level <= pokemon.level
|
if move.move_id != 0 and move.level <= pokemon.level
|
||||||
})
|
})
|
||||||
|
|
||||||
new_moves = (
|
new_moves = (
|
||||||
|
Reference in New Issue
Block a user