Skip to content

Commit

Permalink
Fix menu install #450
Browse files Browse the repository at this point in the history
  • Loading branch information
SMUnlimited committed Nov 30, 2024
1 parent 7cc61a6 commit 5527096
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Multiple mine control fixes (jzy-chitong56)
- Fixed 4th mine chance was evaluated incorrectly. (jzy-chitong56)
- (Classic) Include missing hero harass attacks that are applicable from reforged scripts.
- (Installer) Fix menu install options not working (jzy-chitong56)

## [3.4.0] - 2024-11-19

Expand Down
8 changes: 4 additions & 4 deletions Electron/src/app/core/services/menu/menu.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,25 @@ export class MenuService {
{
label: 'Install Opt Reforged on Folder with Commander',
click: () => {
this.electronService.ipcRenderer.send('install', 'REFORGED', true, true, true, false);
this.electronService.ipcRenderer.send('install', 'REFORGED', true, 1, true, false);
}
},
{
label: 'Install Opt Reforged on Folder (No Commander)',
click: () => {
this.electronService.ipcRenderer.send('install', true, false, true, false);
this.electronService.ipcRenderer.send('install', 'REFORGED', true, 0, true, false);
}
},
{
label: 'Install Opt Reforged on Map with Commander',
click: () => {
this.electronService.ipcRenderer.send('install','REFORGED', false, true, true, false);
this.electronService.ipcRenderer.send('install', 'REFORGED', false, 1, true, false);
}
},
{
label: 'Install Opt Reforged on Map (No Commander)',
click: () => {
this.electronService.ipcRenderer.send('install', false, false, true, false);
this.electronService.ipcRenderer.send('install', 'REFORGED', false, 0, true, false);
}
},
// TODO: recreate MakeTFT script
Expand Down

0 comments on commit 5527096

Please sign in to comment.