Skip to content

Commit bb5afb7

Browse files
committed
Use totally not AssetCc instead of AssetCc2
1 parent 378990d commit bb5afb7

File tree

1 file changed

+4
-4
lines changed
  • xivModdingFramework/Models/FileTypes

1 file changed

+4
-4
lines changed

xivModdingFramework/Models/FileTypes/Sklb.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public Sklb(DirectoryInfo gameDirectory, XivDataFile dataFile)
6161
/// <param name="model">The model we are getting the skeleton for</param>
6262
public async Task CreateSkelFromSklb(IItem item, XivMdl model)
6363
{
64-
var hasAssetcc = File.Exists(Directory.GetCurrentDirectory() + "\\AssetCc2.exe");
64+
var hasAssetcc = File.Exists(Directory.GetCurrentDirectory() + "\\NotAssetCc.exe");
6565

6666
if (hasAssetcc)
6767
{
@@ -104,8 +104,8 @@ public async Task CreateSkelFromSklb(IItem item, XivMdl model)
104104
{
105105
StartInfo = new ProcessStartInfo
106106
{
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\"",
109109
RedirectStandardOutput = true,
110110
UseShellExecute = false,
111111
CreateNoWindow = true
@@ -120,7 +120,7 @@ public async Task CreateSkelFromSklb(IItem item, XivMdl model)
120120
}
121121
else
122122
{
123-
throw new FileNotFoundException("AssetCc2 could not be found.");
123+
throw new FileNotFoundException("NotAssetCc could not be found.");
124124
}
125125
}
126126

0 commit comments

Comments
 (0)