File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
xivModdingFramework/Materials/FileTypes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public class StainingTemplateEntry
68
68
public readonly List < Half [ ] > DiffuseEntries = new List < Half [ ] > ( ) ;
69
69
public readonly List < Half [ ] > SpecularEntries = new List < Half [ ] > ( ) ;
70
70
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 > ( ) ;
72
72
public readonly List < Half > GlossEntries = new List < Half > ( ) ;
73
73
74
74
public StainingTemplateEntry ( byte [ ] data , int offset )
@@ -201,7 +201,7 @@ public StainingTemplateEntry(byte[] data, int offset)
201
201
}
202
202
else if ( x == 4 )
203
203
{
204
- DiffuseSecondaryEntries . Add ( arr [ 0 ] ) ;
204
+ SpecularPowerEntries . Add ( arr [ 0 ] ) ;
205
205
}
206
206
}
207
207
You can’t perform that action at this time.
0 commit comments