Skip to content

Commit

Permalink
Fixed issue where confirm button wasn't working
Browse files Browse the repository at this point in the history
  • Loading branch information
Miquiis committed Jul 17, 2023
1 parent 86874ac commit 87843ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bulk-exporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@
Blockbench.showMessageBox({ title: "Fetch not found.", width: 480, message: "The fetch command was not found. Make sure to log in to your mudstack account, press [CTRL+Shift+I] to open the dev tools from Chrome, and navigate to the Network Tab. Click on [Fetch/XHR] on the filter options and leave it here. On the mudstack website, go to the workspace you want to upload. Back on the dev tools, you should see a list of request, search for one called [recent]. Right click it, go to Copy > Copy as fetch. You can now close this message and click [Copy from Clipboard] again."});
}
return false;
} else if (buttonId === 1) {
} else if (buttonId === 2) {
const formResults = dialog.getFormResult();
if (formResults.token.length > 0 && formResults.accountId.length > 0 && formResults.workspaceId.length > 0)
{
Expand Down Expand Up @@ -469,7 +469,7 @@
author: 'Miquiis',
description: 'This plugins allows you to bulk export Blockbench projects into other extentions.',
icon: 'fas.fa-file-import',
version: '2.1.0',
version: '2.1.1',
variant: 'both',
onload() {
login_in_to_mudstack_folder = registerButton(new Action('login_in_to_mudstack_folder', {
Expand Down

0 comments on commit 87843ab

Please sign in to comment.