From 22777d43cd9e7c2a5d48a1328acd2dadf59ad7c8 Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 15 Jul 2024 23:02:51 -0400 Subject: [PATCH] Fix help responses to ori and pos commands --- src/bot.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bot.rs b/src/bot.rs index c8df9f0..4e2e555 100644 --- a/src/bot.rs +++ b/src/bot.rs @@ -258,7 +258,7 @@ impl Bot { None } else { - Some("Use the format 'orientation [0-360]'") + Some("Use the format 'ori [0-360]'") } } else { Some(price_correction_message) @@ -288,7 +288,7 @@ impl Bot { None } else { - Some("Use the format 'position [x] [y] [z]'.") + Some("Use the format 'pos [x] [y] [z]'.") } } else { Some(price_correction_message)