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.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/command.rs b/src/engine/command.rs
index bcfc352..3ea0fbe 100644
--- a/src/engine/command.rs
+++ b/src/engine/command.rs
@@ -19,7 +19,7 @@ impl fmt::Display for Command {
}
#[repr(u8)]
-#[derive(Debug, Clone, Copy)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BuildingType {
Defence = 0,
Attack = 1,
@@ -35,7 +35,7 @@ impl BuildingType {
pub fn from_u8(id: u8) -> Option<BuildingType> {
use std::mem;
- if id < 4 && id != 3 { Some(unsafe { mem::transmute(id) }) } else { None }
+ if id <= 4 && id != 3 { Some(unsafe { mem::transmute(id) }) } else { None }
}
}