Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions E4XInterregnumModManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function GenerateModOrder() {

// Build the EnabledMods text.
let modOrder = "TXT2\n"
modOrder += "SinsArchiveVersion 197\n"
modOrder += "SinsArchiveVersion 198\n"
modOrder += "Version 0\n"
modOrder += "enabledModNameCount " + selectedMods.length + "\n";
selectedMods.forEach(mod => {
Expand Down Expand Up @@ -92,4 +92,4 @@ function CopyClipboard() {
function DownloadEnabledMods() {
let enabledMods = new Blob([document.getElementById("Results").innerHTML], {type: "text/plain;charset=utf-8"});
saveAs(enabledMods, "EnabledMods.txt");
}
}