mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
AbsolutePath: Removed unused parameter
This commit is contained in:
parent
73b5fc495e
commit
c215f92abc
@ -280,7 +280,7 @@ namespace Wabbajack.Common
|
||||
true);
|
||||
}
|
||||
|
||||
public AbsolutePath AppendToName(AbsolutePath bsa, string toAppend)
|
||||
public AbsolutePath AppendToName(string toAppend)
|
||||
{
|
||||
return new AbsolutePath(
|
||||
Path.Combine(Path.GetDirectoryName(_path),
|
||||
|
@ -17,7 +17,7 @@ namespace Wabbajack.Lib.CompilationSteps
|
||||
source.AbsolutePath.Extension != Consts.ESM) return null;
|
||||
|
||||
var bsa = source.AbsolutePath.ReplaceExtension(Consts.BSA);
|
||||
var bsaTextures = source.AbsolutePath.AppendToName(bsa, " - Textures");
|
||||
var bsaTextures = source.AbsolutePath.AppendToName(" - Textures");
|
||||
|
||||
if (source.AbsolutePath.Size > 250 || !bsa.IsFile && !bsaTextures.IsFile) return null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user