fix(ui): update ArmorSlotWidget to use new Nexus slot names

- CHEST -> TORSO
- LEFT_ARM/RIGHT_ARM -> ARMS
- LEFT_HAND/RIGHT_HAND -> HANDS
- THIGHS -> LEGS
- Added SHINS and FEET
This commit is contained in:
LemonNexus 2026-02-09 11:18:26 +00:00
parent 0e5e54e386
commit 8e26602069
1 changed files with 7 additions and 7 deletions

View File

@ -421,15 +421,15 @@ class ArmorSlotWidget(QWidget):
self._populate_plates()
def _get_slot_display_name(self) -> str:
"""Get human-readable slot name."""
"""Get human-readable slot name (matches Entropia Nexus)."""
names = {
ArmorSlot.HEAD: "Head",
ArmorSlot.CHEST: "Chest",
ArmorSlot.LEFT_ARM: "Left Arm",
ArmorSlot.RIGHT_ARM: "Right Arm",
ArmorSlot.LEFT_HAND: "Left Hand",
ArmorSlot.RIGHT_HAND: "Right Hand",
ArmorSlot.LEGS: "Legs/Feet",
ArmorSlot.TORSO: "Torso",
ArmorSlot.ARMS: "Arms",
ArmorSlot.HANDS: "Hands",
ArmorSlot.LEGS: "Legs",
ArmorSlot.SHINS: "Shins",
ArmorSlot.FEET: "Feet",
}
return names.get(self.slot, self.slot.value)