summaryrefslogtreecommitdiff
path: root/src/engine/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/command.rs')
-rw-r--r--src/engine/command.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/command.rs b/src/engine/command.rs
index 7a2594d..bcfc352 100644
--- a/src/engine/command.rs
+++ b/src/engine/command.rs
@@ -13,7 +13,7 @@ impl fmt::Display for Command {
match *self {
Command::Nothing => write!(f, ""),
Command::Build(p, b) => write!(f, "{},{},{}", p.x, p.y, b as u8),
- Command::Deconstruct(p) => write!(f, "3,{},{}", p.x, p.y),
+ Command::Deconstruct(p) => write!(f, "{},{},3", p.x, p.y),
}
}
}