diff options
Diffstat (limited to 'server/src/lib.rs')
-rw-r--r-- | server/src/lib.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs index c35a2b5a..ea514d5b 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -27,6 +27,7 @@ pub mod commands; pub mod data; pub mod entity; pub mod interaction; +pub mod register; pub mod scoreboard; pub mod server; pub mod state; @@ -72,7 +73,9 @@ macro_rules! trm_param { (t, $x:expr) => { hurrycurry_protocol::Message::Tile($x) }; - (m, $x:expr) => { $x }; + (m, $x:expr) => { + $x + }; } #[derive(Debug)] @@ -110,5 +113,7 @@ macro_rules! tre_param { (t, $x:expr) => { hurrycurry_protocol::Message::Tile($x) }; - (m, $x:expr) => { $x }; + (m, $x:expr) => { + $x + }; } |