mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Add mod bundle update skip
This commit is contained in:
parent
a4968e7529
commit
afa83c782d
1 changed files with 25 additions and 20 deletions
|
@ -285,6 +285,7 @@ export async function checkIfConfigExists() {
|
|||
|
||||
// Mods
|
||||
async function updateModBundle() {
|
||||
if ((await getConfig("noBundleUpdates")) == undefined ?? false) {
|
||||
try {
|
||||
console.log("Downloading mod bundle");
|
||||
const distFolder = app.getPath("userData") + "/plugins/loader/dist/";
|
||||
|
@ -307,7 +308,11 @@ async function updateModBundle() {
|
|||
"ArmCord couldn't install mods, please check if you have stable internet connection and restart the app. If this issue persists, report it on the support server/Github issues."
|
||||
);
|
||||
}
|
||||
} else {
|
||||
console.log("[Mod loader] Skipping mod bundle update");
|
||||
}
|
||||
}
|
||||
|
||||
export var modInstallState: string;
|
||||
export async function installModLoader() {
|
||||
if ((await getConfig("mods")) == "none") {
|
||||
|
|
Loading…
Reference in a new issue