mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 16:02:20 +02:00
Fix moveset loading errors
This commit is contained in:
parent
e251b8d6ae
commit
34e1e20fd5
@ -7862,7 +7862,7 @@ export class PokemonSummonData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (key === "moveset") {
|
if (key === "moveset") {
|
||||||
this.moveset = value.map((m: any) => PokemonMove.loadMove(m));
|
this.moveset = value?.map((m: any) => PokemonMove.loadMove(m));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user