diff --git a/NetStone/Definitions/Model/Character/CharacterGearDefinition.cs b/NetStone/Definitions/Model/Character/CharacterGearDefinition.cs
index 480573f..3618130 100644
--- a/NetStone/Definitions/Model/Character/CharacterGearDefinition.cs
+++ b/NetStone/Definitions/Model/Character/CharacterGearDefinition.cs
@@ -127,12 +127,6 @@ public class CharacterGearDefinition : IDefinition
[JsonProperty("HANDS")]
public GearEntryDefinition Hands { get; set; }
- ///
- /// Waist
- ///
- [JsonProperty("WAIST")]
- public GearEntryDefinition Waist { get; set; }
-
///
/// Legs
///
diff --git a/NetStone/Model/Parseables/Character/Gear/CharacterGear.cs b/NetStone/Model/Parseables/Character/Gear/CharacterGear.cs
index 913ac5f..d93549e 100644
--- a/NetStone/Model/Parseables/Character/Gear/CharacterGear.cs
+++ b/NetStone/Model/Parseables/Character/Gear/CharacterGear.cs
@@ -48,11 +48,6 @@ public CharacterGear(LodestoneClient client, HtmlNode rootNode, CharacterGearDef
///
public GearEntry? Hands => new GearEntry(this.client, this.RootNode, this.definition.Hands).GetOptional();
- ///
- /// Information about the characters' waist gear. Null if none equipped.
- ///
- public GearEntry? Waist => new GearEntry(this.client, this.RootNode, this.definition.Waist).GetOptional();
-
///
/// Information about the characters' pants. Null if none equipped.
///
diff --git a/NetStone/NetStone.xml b/NetStone/NetStone.xml
index 22f2ad4..0cfe194 100644
--- a/NetStone/NetStone.xml
+++ b/NetStone/NetStone.xml
@@ -828,11 +828,6 @@
Hand piece
-
-
- Waist
-
-
Legs
@@ -2821,11 +2816,6 @@
Information about the characters' gloves. Null if none equipped.
-
-
- Information about the characters' waist gear. Null if none equipped.
-
-
Information about the characters' pants. Null if none equipped.