From a6f21e236f86bc9a9bdcf687ba1086c464d079bc Mon Sep 17 00:00:00 2001 From: tom barrett Date: Fri, 20 Apr 2018 04:27:31 -0500 Subject: -moved mining_data init into function --- src/client/mining.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/client/mining.rs') diff --git a/src/client/mining.rs b/src/client/mining.rs index 5cb1240..17a7819 100644 --- a/src/client/mining.rs +++ b/src/client/mining.rs @@ -23,8 +23,11 @@ pub fn client_mining(mut stream : TcpStream, mut buff_r : BufReader) match data.has_astroid_target { true => match data.is_within_range { - true => write!(stdout, "{}Press F to begin mining.", termion::cursor::Goto(1,1)).unwrap(), - false => write!(stdout, "{}Astroid must be within range of {}.", termion::cursor::Goto(1,1), data.mining_range).unwrap(), + true => match data.status { + true => write!(stdout, "{}Press F to stop mining.", termion::cursor::Goto(1,1)).unwrap(), + false => write!(stdout, "{}Press F to begin mining.", termion::cursor::Goto(1,1)).unwrap(), + } + false => write!(stdout, "{}Astroid must be within range of {}.", termion::cursor::Goto(1,1), data.range).unwrap(), }, false => write!(stdout, "{}Ship has no astroid targeted.", termion::cursor::Goto(1,1)).unwrap(), } -- cgit v1.2.3