Skip to content

Commit be319f8

Browse files
committed
fixed critical netch output issue
1 parent 50568d8 commit be319f8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

PandoraPlus/PandoraPlus.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@
525525
<None Update="Pandora_Engine\Skyrim\Template\actors\dlc02\netch\behaviors\netchbehavior.hkx">
526526
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
527527
</None>
528-
<None Update="Pandora_Engine\Skyrim\Template\actors\dlc02\netch\character assets\skeleton.hkx">
528+
<None Update="Pandora_Engine\Skyrim\Template\actors\dlc02\netch\characterassets\skeleton.hkx">
529529
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
530530
</None>
531531
<None Update="Pandora_Engine\Skyrim\Template\actors\dlc02\netch\characters\netchcharacter.hkx">

PandoraPlus/Pandora_Engine/Skyrim/Template/actors/dlc02/netch/characters/netchcharacter.hkx

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
<hkparam name="mirroredSyncPointSubstringsA" numelements="0"></hkparam>
3636
<hkparam name="mirroredSyncPointSubstringsB" numelements="0"></hkparam>
3737
<hkparam name="name">NetchCharacter</hkparam>
38-
<hkparam name="rigName">Character Assets\Skeleton.hkx</hkparam>
39-
<hkparam name="ragdollName">Character Assets\Skeleton.hkx</hkparam>
38+
<hkparam name="rigName">CharacterAssets\Skeleton.hkx</hkparam>
39+
<hkparam name="ragdollName">CharacterAssets\Skeleton.hkx</hkparam>
4040
<hkparam name="behaviorFilename">Behaviors\NetchBehavior.hkx</hkparam>
4141
</hkobject>
4242
<hkobject name="#0025" class="hkbVariableValueSet" signature="0x27812d8d">

PandoraPlus/Patch/Patchers/Skyrim/Hkx/PackFile.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,10 @@ public void Export()
181181
}
182182
debugOuputHandle = new FileInfo(debugOuputHandle.DirectoryName + "\\m_" + debugOuputHandle.Name);
183183

184-
//using (var writeStream = debugOuputHandle.Create())
185-
//{
186-
// Map.Save(writeStream);
187-
//}
184+
using (var writeStream = debugOuputHandle.Create())
185+
{
186+
Map.Save(writeStream);
187+
}
188188

189189
#else
190190
try

0 commit comments

Comments
 (0)