diff --git a/src/lib/rpc/features.ts b/src/lib/rpc/features.ts index 8282a74..04f0b85 100644 --- a/src/lib/rpc/features.ts +++ b/src/lib/rpc/features.ts @@ -144,12 +144,12 @@ export async function getModSources(): Promise { export async function extractNewMod( gameName: string, - zipPath: string, + bundlePath: string, modSource: string, ): Promise { return await invoke_rpc( "extract_new_mod", - { gameName, zipPath, modSource }, + { gameName, bundlePath, modSource }, () => failed("Failed to extract mod"), ); }