armorContents

var armorContents: Array<ItemStack?>

Array containing the player's equipped armor contents.

This array represents the 4 armor slots (helmet, chestplate, leggings, boots). Each slot can contain an ItemStack or be null for empty armor slots.

Array Structure:

  • Index 0: Boots

  • Index 1: Leggings

  • Index 2: Chestplate

  • Index 3: Helmet

Persistence: Stored in the player_inventory table with slots 100-103. Dirty Tracking: Always marked dirty on assignment.

See also

ItemStack