Skip to content

Commit

Permalink
Update GameInventoryType enum (#2007)
Browse files Browse the repository at this point in the history
  • Loading branch information
Haselnussbomber committed Aug 12, 2024
1 parent ae4c561 commit 7e0c97f
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions Dalamud/Game/Inventory/GameInventoryType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ public enum GameInventoryType : ushort
Crystals = 2001,

/// <summary>
/// Mail container.
/// Item attachments of a letter the player is currently composing.
/// </summary>
MailEdit = 2002,

/// <summary>
/// Item attachments of a letter the player is currently reading.
/// </summary>
Mail = 2003,

Expand All @@ -57,7 +62,7 @@ public enum GameInventoryType : ushort
HandIn = 2005,

/// <summary>
/// DamagedGear container.
/// Repair window container.
/// </summary>
DamagedGear = 2007,

Expand All @@ -66,6 +71,21 @@ public enum GameInventoryType : ushort
/// </summary>
Examine = 2009,

/// <summary>
/// Estate Possession Retrieval container.
/// </summary>
Reclaim = 2010,

/// <summary>
/// Container for items when changing the exterior housing appearance.
/// </summary>
HousingExteriorAppearanceEdit = 2011,

/// <summary>
/// Container for items when changing the interior housing appearance.
/// </summary>
HousingInteriorAppearanceEdit = 2012,

/// <summary>
/// Doman Enclave Reconstruction Reclamation Box.
/// </summary>
Expand Down Expand Up @@ -93,10 +113,10 @@ public enum GameInventoryType : ushort

/// <summary>
/// Armory waist container.
/// </summary>
/// <remarks>
/// This container should be unused as belt items were removed from the game in Shadowbringers.
/// </remarks>
/// </summary>
ArmoryWaist = 3204,

/// <summary>
Expand Down

0 comments on commit 7e0c97f

Please sign in to comment.