diff --git a/client/src/components/ControlPanel.jsx b/client/src/components/ControlPanel.jsx index 377e26d..423ccbf 100644 --- a/client/src/components/ControlPanel.jsx +++ b/client/src/components/ControlPanel.jsx @@ -124,56 +124,125 @@ function TurtleDetails({ turtle }) { + + + + + -
-

Manual Control

-
- -
- - -
- +
+

Movement

+
+
+
-
- - +
+ + +
+
+ + +
+
+
+ +
+

Actions

+
+ + + +
{turtle.inventory && turtle.inventory.length > 0 && (
-

Inventory

+

Inventory ({turtle.inventoryCount || turtle.inventory.length}/16)

{turtle.inventory.map((item, index) => (
+ đŸ“Ļ - {item.name.replace('minecraft:', '')} + {item.name.replace('minecraft:', '').replace(/_/g, ' ')} - x{item.count} + ×{item.count}
))}