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