From 3eae90bc4138e4a4614d6dc563ee2dd3b149b552 Mon Sep 17 00:00:00 2001 From: CodexAdrian <83074853+CodexAdrian@users.noreply.github.com> Date: Thu, 29 Jun 2023 02:38:52 -0400 Subject: [PATCH] Fixed helper error --- theseus_gui/src/helpers/profile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theseus_gui/src/helpers/profile.js b/theseus_gui/src/helpers/profile.js index a23f3fd07..b6eb21b3f 100644 --- a/theseus_gui/src/helpers/profile.js +++ b/theseus_gui/src/helpers/profile.js @@ -98,7 +98,7 @@ export async function remove_project(path, projectPath) { /// included_overrides is an array of paths to override folders to include (ie: 'mods', 'resource_packs') // Version id is optional (ie: 1.1.5) export async function export_profile_mrpack(path, exportLocation, includedOverrides, versionId) { - return await invoke('profile_export_mrpack', { + return await invoke('plugin:profile|profile_export_mrpack', { path, exportLocation, includedOverrides, @@ -115,7 +115,7 @@ export async function export_profile_mrpack(path, exportLocation, includedOverri // => [mods, resourcepacks] // allows selection for 'included_overrides' in export_profile_mrpack export async function get_potential_override_folders(profilePath) { - return await invoke('profile_get_potential_override_folders', { profilePath }) + return await invoke('plugin:profile|profile_get_potential_override_folders', { profilePath }) } // Run Minecraft using a pathed profile