diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-17 16:57:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-17 16:57:34 +0200 |
commit | 7cacd111e2b443bac291244b168c20e2c8bf69ec (patch) | |
tree | 277ace5a4e8223df4b156e766c2660406101a82b /server/protocol | |
parent | 77a73b415888b0285ba64b27c3f69440216e475c (diff) | |
download | hurrycurry-7cacd111e2b443bac291244b168c20e2c8bf69ec.tar hurrycurry-7cacd111e2b443bac291244b168c20e2c8bf69ec.tar.bz2 hurrycurry-7cacd111e2b443bac291244b168c20e2c8bf69ec.tar.zst |
add hint-based tutorial for item crafting
Diffstat (limited to 'server/protocol')
-rw-r--r-- | server/protocol/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs index 54a7f868..706747f4 100644 --- a/server/protocol/src/lib.rs +++ b/server/protocol/src/lib.rs @@ -136,7 +136,7 @@ pub enum PacketS { }, } -#[derive(Debug, Clone, Serialize, Deserialize, Encode, Decode)] +#[derive(Debug, Clone, Serialize, Deserialize, Encode, Decode, PartialEq, Eq)] #[serde(rename_all = "snake_case")] pub enum Message { Text(String), |