diff options
| author | troido <troido@protonmail.com> | 2020-09-22 16:31:26 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-09-22 16:31:26 +0200 |
| commit | 5cf8cc94bdf84341589fab4d1b941aa104de9a42 (patch) | |
| tree | 0c1ae68e100e1b09a666d21a54904d0ca019cb3d /src/components | |
| parent | f2c9425d33f79a3dbfc0c6ac41c8b88b81a1672e (diff) | |
added capes!
Diffstat (limited to 'src/components')
| -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 } } |
