diff options
Diffstat (limited to 'src-vue/src/views/DeveloperView.vue')
-rw-r--r-- | src-vue/src/views/DeveloperView.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-vue/src/views/DeveloperView.vue b/src-vue/src/views/DeveloperView.vue index 9f8881d8..f199ddaf 100644 --- a/src-vue/src/views/DeveloperView.vue +++ b/src-vue/src/views/DeveloperView.vue @@ -111,7 +111,7 @@ export default defineComponent({ game_path: this.$store.state.game_path, install_type: this.$store.state.install_type } as GameInstall; - await invoke("disable_all_but_core_caller", { gameInstall: game_install }).then((message) => { + await invoke("disable_all_but_core", { gameInstall: game_install }).then((message) => { ElNotification({ title: 'Success', message: "Disabled all mods but core", @@ -133,7 +133,7 @@ export default defineComponent({ game_path: this.$store.state.game_path, install_type: this.$store.state.install_type } as GameInstall; - await invoke("get_installed_mods_caller", { gameInstall: game_install }).then((message) => { + await invoke("get_installed_mods_and_properties", { gameInstall: game_install }).then((message) => { // Simply console logging for now // In the future we should display the installed mods somewhere console.log(message); |