Fix error when importing data while eggs list is empty

This commit is contained in:
Flashfyre 2023-12-31 18:53:16 -05:00
parent 1ad25bdf61
commit 183b53286e

View File

@ -285,6 +285,8 @@ export class GameData {
return JSON.parse(dataStr, (k: string, v: any) => {
if (k === 'eggs') {
const ret: EggData[] = [];
if (v === null)
v = [];
for (let e of v)
ret.push(new EggData(e));
return ret;