fixed the issue with the MO2Compiler not working with this

This commit is contained in:
Luca 2021-02-12 10:16:23 +01:00
parent 3db47f1dd6
commit 248007e315

View File

@ -12,13 +12,13 @@ namespace Wabbajack.Lib.CompilationSteps
{
private readonly IEnumerable<AbsolutePath> _includeDirectly = new List<AbsolutePath>();
private readonly string _tag;
private readonly NativeCompiler _nativeCompiler;
private readonly ACompiler _aCompiler;
private readonly AbsolutePath _sourcePath;
public IncludeTaggedFolders(ACompiler compiler, string tag) : base(compiler)
{
_nativeCompiler = (NativeCompiler)compiler;
_sourcePath = _nativeCompiler.SourcePath;
_aCompiler = (ACompiler)compiler;
_sourcePath = _aCompiler.SourcePath;
_tag = tag;
string rootDirectory = (string)_sourcePath;