diff options
author | Alystrasz <contact@remyraes.com> | 2022-08-09 10:59:53 +0200 |
---|---|---|
committer | Alystrasz <contact@remyraes.com> | 2022-08-09 10:59:53 +0200 |
commit | 3d9a315f31be7345b0d2ebf3a8beba55f547749b (patch) | |
tree | db39c3f38ef1fcbcf6a0e2444470f32fc9058b6a /src/index.js | |
parent | 58b3ad7bab848f608d5b5f4f319de1da519eacd0 (diff) | |
parent | 5106d9ed409a3cc91a7755f961fab1bf91d8b7fb (diff) | |
download | Viper-3d9a315f31be7345b0d2ebf3a8beba55f547749b.tar.gz Viper-3d9a315f31be7345b0d2ebf3a8beba55f547749b.zip |
Merge branch 'main' into feat/ci-builds
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js index 148e30a..e01a635 100644 --- a/src/index.js +++ b/src/index.js @@ -71,6 +71,7 @@ function start() { ipcMain.on("removed-mod", (event, modname) => {send("removed-mod", modname)}); ipcMain.on("gui-getmods", (event, ...args) => {send("mods", utils.mods.list())}); ipcMain.on("installed-mod", (event, modname) => {send("installed-mod", modname)}); + ipcMain.on("no-internet", () => {send("no-internet")}); // install calls ipcMain.on("install-from-path", (event, path) => {utils.mods.install(path)}); |