We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa30ca3 commit 6dbc5fdCopy full SHA for 6dbc5fd
xivModdingFramework/Items/ItemType.cs
@@ -209,6 +209,19 @@ public static string GetItemSlotAbbreviation(this IItem item)
209
if(match.Success)
210
{
211
return match.Groups[1].Value;
212
+ } else
213
+ {
214
+ // Hackhack fallback for cases where we have mounts listed in the item list
215
+ // with no actual specific equipment slot assigned, such as the Company Chocobo.
216
+ if(mi.PrimaryID == 1 && mi.SecondaryID == 1)
217
218
+ // Company chocobo
219
+ return "dwn";
220
221
222
+ // Other mounts
223
+ return "top";
224
+ }
225
}
226
227
0 commit comments