summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authortom barrett <spalf0@gmail.com>2019-03-14 13:18:55 -0500
committertom barrett <spalf0@gmail.com>2019-03-14 13:18:55 -0500
commit69aa9f090d551c1ebb211f3a01273b28421fc9c0 (patch)
tree6bec4cc35fcda170ebb57da6328b76a1f88d8609 /src/client
parent0973ac1666a6ee3b606a537742abe506719fd156 (diff)
fleshing out tractorbeam
Diffstat (limited to 'src/client')
-rw-r--r--src/client/tractorbeam.rs8
1 files changed, 4 insertions, 4 deletions
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<TcpStream
match data.status {
tractorbeam::Status::None => 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(),