Skip to content

Commit 843c60d

Browse files
committed
- Added Copy Dye to Row functionality.
1 parent 550d4f2 commit 843c60d

File tree

1 file changed

+2
-2
lines changed
  • xivModdingFramework/Materials/FileTypes

1 file changed

+2
-2
lines changed

xivModdingFramework/Materials/FileTypes/STM.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class StainingTemplateEntry
6868
public readonly List<Half[]> DiffuseEntries = new List<Half[]>();
6969
public readonly List<Half[]> SpecularEntries = new List<Half[]>();
7070
public readonly List<Half[]> EmissiveEntries = new List<Half[]>();
71-
public readonly List<Half> DiffuseSecondaryEntries = new List<Half>();
71+
public readonly List<Half> SpecularPowerEntries = new List<Half>();
7272
public readonly List<Half> GlossEntries = new List<Half>();
7373

7474
public StainingTemplateEntry(byte[] data, int offset)
@@ -201,7 +201,7 @@ public StainingTemplateEntry(byte[] data, int offset)
201201
}
202202
else if (x == 4)
203203
{
204-
DiffuseSecondaryEntries.Add(arr[0]);
204+
SpecularPowerEntries.Add(arr[0]);
205205
}
206206
}
207207

0 commit comments

Comments
 (0)