mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fixed typo
This commit is contained in:
parent
1041f1ecde
commit
0fa2be2c1d
@ -4,6 +4,7 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Wabbajack.Common;
|
||||||
|
|
||||||
namespace Wabbajack.Lib.CompilationSteps
|
namespace Wabbajack.Lib.CompilationSteps
|
||||||
{
|
{
|
||||||
@ -15,7 +16,7 @@ namespace Wabbajack.Lib.CompilationSteps
|
|||||||
|
|
||||||
public override Directive Run(RawSourceFile source)
|
public override Directive Run(RawSourceFile source)
|
||||||
{
|
{
|
||||||
if (!source.Path.EndsWith("\\vortex.deployment.msgpack") &&
|
if (!source.Path.EndsWith("vortex.deployment.msgpack") &&
|
||||||
!source.Path.EndsWith("\\vortex.deployment.json")) return null;
|
!source.Path.EndsWith("\\vortex.deployment.json")) return null;
|
||||||
var inline = source.EvolveTo<InlineFile>();
|
var inline = source.EvolveTo<InlineFile>();
|
||||||
inline.SourceDataID = _compiler.IncludeFile(File.ReadAllBytes(source.AbsolutePath));
|
inline.SourceDataID = _compiler.IncludeFile(File.ReadAllBytes(source.AbsolutePath));
|
||||||
|
Loading…
Reference in New Issue
Block a user