From 7071dfe8259716375bb9f1373ea0b88a39102efa Mon Sep 17 00:00:00 2001 From: metamuffin Date: Fri, 20 Sep 2024 22:54:17 +0200 Subject: server can register --- server/src/lib.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'server/src/lib.rs') 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 + }; } -- cgit v1.2.3-70-g09d2