Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtleP committed Jun 6, 2024
1 parent 52d4eb9 commit b61a79a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/services/Bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ export default class Bundler {
*/
private async getGameAssets(
target: string,
files: Array<File>,
packaged: boolean
files: Array<File>
): Promise<Blob> {
const zip = new JSZip();

Expand Down Expand Up @@ -90,7 +89,7 @@ export default class Bundler {
const data: Map<string, GameData> = new Map();

for (const target of targets) {
const assets = await this.getGameAssets(target, files, packaged);
const assets = await this.getGameAssets(target, files);
data.set(target, { binary: new Blob(), assets });
}

Expand Down

0 comments on commit b61a79a

Please sign in to comment.