diff --git a/Wabbajack.Compiler/MO2Compiler.cs b/Wabbajack.Compiler/MO2Compiler.cs index 37cdf6af..00bb056a 100644 --- a/Wabbajack.Compiler/MO2Compiler.cs +++ b/Wabbajack.Compiler/MO2Compiler.cs @@ -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), diff --git a/Wabbajack.DTOs/Game/Game.cs b/Wabbajack.DTOs/Game/Game.cs index 3d7cebb4..9ed28dc7 100644 --- a/Wabbajack.DTOs/Game/Game.cs +++ b/Wabbajack.DTOs/Game/Game.cs @@ -49,4 +49,5 @@ public enum Game [Description("Karryn's Prison")] KarrynsPrison, + [Description("Modding Tools")] ModdingTools, } diff --git a/Wabbajack.DTOs/Game/GameRegistry.cs b/Wabbajack.DTOs/Game/GameRegistry.cs index 276356b0..c382f34f 100644 --- a/Wabbajack.DTOs/Game/GameRegistry.cs +++ b/Wabbajack.DTOs/Game/GameRegistry.cs @@ -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, + } } };