summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/equipment.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/equipment.rs b/src/components/equipment.rs
index e7c9734..0e93902 100644
--- a/src/components/equipment.rs
+++ b/src/components/equipment.rs
@@ -13,7 +13,8 @@ use crate::{
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Slot {
Hand,
- Body
+ Body,
+ Back
}
impl Slot {
@@ -21,6 +22,7 @@ impl Slot {
match txt {
"hand" => Some(Self::Hand),
"body" => Some(Self::Body),
+ "back" => Some(Self::Back),
_ => None
}
}