diff --git a/src/lib.rs b/src/lib.rs index 769c4d1..a654508 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -65,8 +65,8 @@ impl std::fmt::Display for Cell { match self { Cell::Wall => 'X', Cell::Box => '*', - Cell::Goal(true) => '!', Cell::Goal(false) => '.', + Cell::Goal(true) => '!', Cell::None => ' ', } ) @@ -159,8 +159,8 @@ impl Level { } 'X' => Ok(Cell::Wall), '*' => Ok(Cell::Box), - '!' => Ok(Cell::Goal(true)), 'g' => Ok(Cell::Goal(false)), + '!' => Ok(Cell::Goal(true)), '.' => Ok(Cell::None), _ => Err(ReadError::BadSymbol), })