From 69aa9f090d551c1ebb211f3a01273b28421fc9c0 Mon Sep 17 00:00:00 2001 From: tom barrett Date: Thu, 14 Mar 2019 13:18:55 -0500 Subject: fleshing out tractorbeam --- src/client/tractorbeam.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/client') diff --git a/src/client/tractorbeam.rs b/src/client/tractorbeam.rs index 74d912f..c8a6d92 100644 --- a/src/client/tractorbeam.rs +++ b/src/client/tractorbeam.rs @@ -27,25 +27,25 @@ pub fn client_tractorbeam(mut stream: TcpStream, mut buff_r: BufReader write!( stdout, - "{}Press o to pull, p to push, t to bring to 5m.", + "{}Press o to pull, p to push, b to bring to 5m.", clear ) .unwrap(), tractorbeam::Status::Push => write!( stdout, - "{}Press o to pull, p to stop pushing, t to bring to 5m.", + "{}Press o to pull, p to stop pushing, b to bring to 5m.", clear ) .unwrap(), tractorbeam::Status::Pull => write!( stdout, - "{}Press o to stop pulling, p to push, t to bring to 5m.", + "{}Press o to stop pulling, p to push, b to bring to 5m.", clear ) .unwrap(), tractorbeam::Status::Bring => write!( stdout, - "{}Press o to pulling, p to push, t to stop bringing to 5m.", + "{}Press o to pulling, p to push, b to stop bringing to 5m.", clear ) .unwrap(), -- cgit v1.2.3