From: Geoffrey Allott Date: Sun, 4 Jun 2023 16:41:23 +0000 (+0100) Subject: anonymise PutInBox action X-Git-Url: https://git.pointlesshacks.com/?a=commitdiff_plain;h=e481edd05e099713f28c7d2df02ac483ba3c7639;p=pokerwave.git anonymise PutInBox action --- diff --git a/src/game/action.rs b/src/game/action.rs index 2ce6015..23c2eff 100644 --- a/src/game/action.rs +++ b/src/game/action.rs @@ -68,6 +68,7 @@ impl Action { pub fn anonymise(&self) -> Self { match self { Action::ReceiveCard { .. } => Action::ReceiveCard { card: None }, + Action::PutInBox { .. } => Action::PutInBox { card: None }, action => action.clone(), } }