Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions xivModdingFramework/Cache/XivCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -741,11 +741,7 @@ private static async Task RebuildMountsCache(ModTransaction tx)
var _companions = new Companions();
var list = await _companions.GetUncachedMountList(tx);

// Don't get the ornament list for the Chinese or Korean clients as they don't have them yet
if (_gameInfo.GameLanguage != XivLanguage.Chinese && _gameInfo.GameLanguage != XivLanguage.Korean)
{
list.AddRange(await _companions.GetUncachedOrnamentList(tx));
}
list.AddRange(await _companions.GetUncachedOrnamentList(tx));

db.BusyTimeout = 3000;
db.Open();
Expand Down
1 change: 0 additions & 1 deletion xivModdingFramework/Exd/FileTypes/ExColumnExpectations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ internal static class ExColumnExpectations
if (language == XivLanguage.Korean)
{
// Set up overrides here if necessary for KR.
columnExpectations["Icon"] = (26, ExcelColumnDataType.UInt16);
}
else if (language == XivLanguage.Chinese)
{
Expand Down
1 change: 1 addition & 0 deletions xivModdingFramework/General/Enums/XivLanguage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public enum XivLanguage
[Description("fr")] French,
[Description("ko")] Korean,
[Description("chs")] Chinese,
[Description("tc")] TraditionalChinese,
[Description("none")] None
}

Expand Down