Fix moveset loading errors

This commit is contained in:
Dean 2025-05-09 00:27:23 -07:00
parent e251b8d6ae
commit 34e1e20fd5

View File

@ -7862,7 +7862,7 @@ export class PokemonSummonData {
}
if (key === "moveset") {
this.moveset = value.map((m: any) => PokemonMove.loadMove(m));
this.moveset = value?.map((m: any) => PokemonMove.loadMove(m));
continue;
}