diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2024-08-04 14:07:43 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2024-08-04 16:26:26 +0200 |
commit | a8138ebac12088659e7c4a5015b4fb636cfc879f (patch) | |
tree | dac8aca75533d34a8d6b4755395c9b59a01e8036 /src | |
parent | 5d6ab8e481fe6df98f0bb345589d0b1ccb291f88 (diff) | |
download | Viper-a8138ebac12088659e7c4a5015b4fb636cfc879f.tar.gz Viper-a8138ebac12088659e7c4a5015b4fb636cfc879f.zip |
correct ipc event names in cli handler
Diffstat (limited to 'src')
-rw-r--r-- | src/cli.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -115,9 +115,9 @@ async function init() { } // Mod related args, --installmod, --removemod, --togglemod - if (cli.hasSwitch("installmod") && gamepathExists()) {ipcMain.emit("installmod")} - if (cli.hasSwitch("removemod") && gamepathExists()) {ipcMain.emit("removemod", "", cli.getSwitchValue("removemod"))} - if (cli.hasSwitch("togglemod") && gamepathExists()) {ipcMain.emit("togglemod", "", cli.getSwitchValue("togglemod"))} + if (cli.hasSwitch("installmod") && gamepathExists()) {ipcMain.emit("install-mod")} + if (cli.hasSwitch("removemod") && gamepathExists()) {ipcMain.emit("remove-mod", "", cli.getSwitchValue("removemod"))} + if (cli.hasSwitch("togglemod") && gamepathExists()) {ipcMain.emit("toggle-mod", "", cli.getSwitchValue("togglemod"))} // Prints out the list of mods if (cli.hasSwitch("mods") && gamepathExists()) {ipcMain.emit("getmods")} |