File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
xivModdingFramework/Models/FileTypes Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public Sklb(DirectoryInfo gameDirectory, XivDataFile dataFile)
61
61
/// <param name="model">The model we are getting the skeleton for</param>
62
62
public async Task CreateSkelFromSklb ( IItem item , XivMdl model )
63
63
{
64
- var hasAssetcc = File . Exists ( Directory . GetCurrentDirectory ( ) + "\\ AssetCc2 .exe" ) ;
64
+ var hasAssetcc = File . Exists ( Directory . GetCurrentDirectory ( ) + "\\ NotAssetCc .exe" ) ;
65
65
66
66
if ( hasAssetcc )
67
67
{
@@ -104,8 +104,8 @@ public async Task CreateSkelFromSklb(IItem item, XivMdl model)
104
104
{
105
105
StartInfo = new ProcessStartInfo
106
106
{
107
- FileName = Directory . GetCurrentDirectory ( ) + "/AssetCc2 .exe" ,
108
- Arguments = "-s \" " + skelLoc + sklbName + ".sklb\" \" " + skelLoc + sklbName + ".xml\" " ,
107
+ FileName = Directory . GetCurrentDirectory ( ) + "/NotAssetCc .exe" ,
108
+ Arguments = "\" " + skelLoc + sklbName + ".sklb\" \" " + skelLoc + sklbName + ".xml\" " ,
109
109
RedirectStandardOutput = true ,
110
110
UseShellExecute = false ,
111
111
CreateNoWindow = true
@@ -120,7 +120,7 @@ public async Task CreateSkelFromSklb(IItem item, XivMdl model)
120
120
}
121
121
else
122
122
{
123
- throw new FileNotFoundException ( "AssetCc2 could not be found." ) ;
123
+ throw new FileNotFoundException ( "NotAssetCc could not be found." ) ;
124
124
}
125
125
}
126
126
You can’t perform that action at this time.
0 commit comments