Add Support for Nexus Modding Tools

https://www.nexusmods.com/site
This commit is contained in:
EzioTheDeadPoet 2022-12-11 18:37:25 +01:00
parent 8c60dc1197
commit a49b3f5a4a
3 changed files with 10 additions and 3 deletions

View File

@ -258,9 +258,6 @@ public class MO2Compiler : ACompiler
new IgnorePathContains(this, "SSEEdit Cache"),
new IgnoreOtherProfiles(this),
new IgnoreDisabledMods(this),
// TODO
//new IgnoreTaggedFiles(this, Consts.WABBAJACK_IGNORE_FILES),
//new IgnoreTaggedFolders(this,Consts.WABBAJACK_IGNORE),
new IncludeThisProfile(this),
// Ignore the ModOrganizer.ini file it contains info created by MO2 on startup
new IncludeStubbedConfigFiles(this),

View File

@ -49,4 +49,5 @@ public enum Game
[Description("Karryn's Prison")]
KarrynsPrison,
[Description("Modding Tools")] ModdingTools,
}

View File

@ -491,6 +491,15 @@ public static class GameRegistry
},
MainExecutable = "nw.exe".ToRelativePath()
}
},
{
Game.ModdingTools, new GameMetaData
{
Game = Game.ModdingTools,
MO2Name = "Modding Tools",
MO2ArchiveName = "site",
IsGenericMO2Plugin = false,
}
}
};