From cf0b66e2fe37d7a79359b5cacb05b3964e727104 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Mon, 16 Feb 2026 01:48:50 -0500 Subject: [PATCH] feat: Enhance control panel with additional command buttons and improved movement controls --- client/src/components/ControlPanel.jsx | 99 ++++++++++++++++++++++---- 1 file changed, 84 insertions(+), 15 deletions(-) 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}
))}