Fixed mistake in individual trainer editor

This commit is contained in:
Maruno17
2022-06-18 20:48:27 +01:00
parent 4b895e44ef
commit 79f5e5d4aa

View File

@@ -692,7 +692,7 @@ module TrainerPokemonProperty
}
moves = []
Pokemon::MAX_MOVES.times do |i|
moves.push(oldsetting[7 + i])
moves.push(oldsetting[8 + i])
end
moves.uniq!
moves.compact!