diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-20 01:30:36 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-20 01:30:47 +0200 |
commit | 02a843b40f4ddba14bb12d0f17454ee96de350a5 (patch) | |
tree | c771684285d93e4169799255b626063daf791e7a /server/src/lib.rs | |
parent | cbe437809df14c30be2e282505adb562589df65a (diff) | |
download | hurrycurry-02a843b40f4ddba14bb12d0f17454ee96de350a5.tar hurrycurry-02a843b40f4ddba14bb12d0f17454ee96de350a5.tar.bz2 hurrycurry-02a843b40f4ddba14bb12d0f17454ee96de350a5.tar.zst |
translate campaign conditions
Diffstat (limited to 'server/src/lib.rs')
-rw-r--r-- | server/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs index 112f28ea..c35a2b5a 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -72,6 +72,7 @@ macro_rules! trm_param { (t, $x:expr) => { hurrycurry_protocol::Message::Tile($x) }; + (m, $x:expr) => { $x }; } #[derive(Debug)] @@ -109,4 +110,5 @@ macro_rules! tre_param { (t, $x:expr) => { hurrycurry_protocol::Message::Tile($x) }; + (m, $x:expr) => { $x }; } |