Skip to content

Commit 8e3603a

Browse files
this column changed to 28,
setting 26 to the KOR and CHN clients to retain compatibility there
1 parent 5c0df6f commit 8e3603a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

xivModdingFramework/Exd/FileTypes/ExColumnExpectations.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,16 +196,18 @@ internal static class ExColumnExpectations
196196
{
197197
{ "Name", ( 0, ExcelColumnDataType.String ) },
198198
{ "ModelCharaId", ( 8, ExcelColumnDataType.UInt16 ) },
199-
{ "Icon", ( 26, ExcelColumnDataType.UInt16 ) },
199+
{ "Icon", ( 28, ExcelColumnDataType.UInt16 ) },
200200
};
201201

202202
if (language == XivLanguage.Korean)
203203
{
204204
// Set up overrides here if necessary for KR.
205+
columnExpectations["Icon"] = (26, ExcelColumnDataType.UInt16);
205206
}
206207
else if (language == XivLanguage.Chinese)
207208
{
208209
// Set up overrides here if necessary for CN.
210+
columnExpectations["Icon"] = (26, ExcelColumnDataType.UInt16);
209211
}
210212

211213
return columnExpectations;

0 commit comments

Comments
 (0)