Skip to content

Commit

Permalink
Fixed helper error
Browse files Browse the repository at this point in the history
  • Loading branch information
CodexAdrian committed Jun 29, 2023
1 parent 253b3f4 commit 3eae90b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions theseus_gui/src/helpers/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit 3eae90b

Please sign in to comment.