diff options
Diffstat (limited to 'src/components/equipment.rs')
| -rw-r--r-- | src/components/equipment.rs | 4 |
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 } } |
