From 9d8e22ad1e615a0237fc89dbfbad4f327fafb54b Mon Sep 17 00:00:00 2001 From: legop3 Date: Thu, 16 Jul 2026 16:58:27 -0400 Subject: [PATCH] fix some wording in response to community complaints --- server/src/services/operatorCommandService/commands/neato.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/services/operatorCommandService/commands/neato.js b/server/src/services/operatorCommandService/commands/neato.js index ad2b07ee..cfa2a5d3 100644 --- a/server/src/services/operatorCommandService/commands/neato.js +++ b/server/src/services/operatorCommandService/commands/neato.js @@ -13,7 +13,7 @@ function createNeatoCommand({ neatoService, sanitizeMentions }) { if (action === 'status') return message.reply({ content: describeState(neatoService.getState()) }); const actions = { - start: ['starting cleaning', neatoService.startCleaning], + start: ['now cleaning', neatoService.startCleaning], home: ['returning home', neatoService.sendHome], locate: ['playing locate sound', neatoService.locateRobot], 'clear-errors': ['clearing errors', neatoService.clearErrors],