Make walls blue again.

This commit is contained in:
Juergen Stuber 2018-11-28 22:03:40 +01:00
parent e90e8072c3
commit 742184580e
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ fn send<T: Write>(w: &mut T, board: &Board) -> std::io::Result<()> {
let Color(r, g, b) = match square {
Square::Unknown => Color::black(),
Square::Corridor => Color::yellow(),
Square::Wall => Color::darkbrown(),
Square::Wall => Color::blue(),
Square::Start => Color::red(),
Square::Finish => Color::green(),
};