GooseMod Injector v2.1.1

pull/8/head
Oj18 4 years ago
parent 0dfdcfa862
commit 22f5120197

@ -1,5 +1,11 @@
# GooseMod Changelog
## v2.1.1
- ### Fixes
- Fixed local (not from module store) modules being saved breaking next install
## v2.1.0
- ### Tweaks

@ -11,7 +11,7 @@ window.goosemod = {};
this.injectorHash = hash;
});
this.version = '2.1.0';
this.version = '2.1.1';
this.modules = {};
this.disabledModules = {};
@ -1629,6 +1629,8 @@ window.goosemod = {};
toInstallModules = ['fucklytics', 'visualTweaks', 'wysiwygMessages', 'customSounds', 'devMode', 'twitchEmotes', 'noMessageDeletion'];
}
toInstallModules = toInstallModules.filter((m) => this.moduleStoreAPI.modules.find((x) => x.filename === m) !== undefined);
for (let m of toInstallModules) {
this.updateLoadingScreen(`Importing default modules from Module Store...<br><br>${this.moduleStoreAPI.modules.find((x) => x.filename === m).name}<br>${toInstallModules.indexOf(m) + 1}/${toInstallModules.length}<br>${toInstallIsDefault ? '(Default)' : '(Last Installed)'}`);

Loading…
Cancel
Save