diff --git a/static/updateDropsEphinea.ts b/static/updateDropsEphinea.ts index 6ac9b5d4..414e115b 100644 --- a/static/updateDropsEphinea.ts +++ b/static/updateDropsEphinea.ts @@ -17,7 +17,7 @@ export async function updateDropsFromWebsite(itemTypes: ItemTypeDto[]) { ...ultimate.enemyDrops ], null, 4); - await fs.promises.writeFile('./public/enemyDrops.ephinea.json', enemyJson); + await fs.writeFileSync('./public/enemyDrops.ephinea.json', enemyJson); const boxJson = JSON.stringify([ ...normal.boxDrops, @@ -26,7 +26,7 @@ export async function updateDropsFromWebsite(itemTypes: ItemTypeDto[]) { ...ultimate.boxDrops ], null, 4); - await fs.promises.writeFile('./public/boxDrops.ephinea.json', boxJson); + fs.writeFileSync('./public/boxDrops.ephinea.json', boxJson); } async function download( diff --git a/static/updateEphineaData.ts b/static/updateEphineaData.ts index da5001e9..7650b6f3 100644 --- a/static/updateEphineaData.ts +++ b/static/updateEphineaData.ts @@ -26,9 +26,9 @@ update().catch(e => console.error(e)); * - Red Ring has a requirement of 180, not 108 */ async function update() { - const unitxt = await loadUnitxt(); + const unitxt = loadUnitxt(); const itemNames = unitxt[1]; - const items = await updateItems(itemNames); + const items = updateItems(itemNames); await updateDropsFromWebsite(items); // Use this if we ever get the Ephinea drop files. @@ -36,8 +36,8 @@ async function update() { // await updateDrops(itemPt); } -async function loadUnitxt(): Promise { - const buf = await fs.promises.readFile( +function loadUnitxt(): Unitxt { + const buf = fs.readFileSync( `${RESOURCE_DIR}/client/data/unitxt_j.prs` ); @@ -48,8 +48,8 @@ async function loadUnitxt(): Promise { return unitxt; } -async function updateItems(itemNames: Array): Promise { - const buf = await fs.promises.readFile( +function updateItems(itemNames: Array): ItemTypeDto[] { + const buf = fs.readFileSync( `${RESOURCE_DIR}/ship-config/param/ItemPMT.bin` ); @@ -147,7 +147,7 @@ async function updateItems(itemNames: Array): Promise { }); }); - await fs.promises.writeFile( + fs.writeFileSync( `${PUBLIC_DIR}/itemTypes.ephinea.json`, JSON.stringify(itemTypes, null, 4) );