From bad3b5bf137da1640512041d223752256b86c124 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Fri, 20 Feb 2026 03:44:27 -0500 Subject: [PATCH] refactor: replace legacy command queue with eval command queue in Turtle class --- server/Turtle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Turtle.js b/server/Turtle.js index 06f40dc..4356608 100644 --- a/server/Turtle.js +++ b/server/Turtle.js @@ -103,8 +103,8 @@ export class Turtle extends EventEmitter { this.lastUpdate = Date.now(); this.lastStatusBroadcast = 0; - // Legacy command queue (for pocket computer compatibility) - this.pendingLegacyCommands = []; + // Command queue for eval commands sent to webbridge + this.pendingCommands = []; // Start in idle state this.setState('idle');