From e481edd05e099713f28c7d2df02ac483ba3c7639 Mon Sep 17 00:00:00 2001 From: Geoffrey Allott Date: Sun, 4 Jun 2023 17:41:23 +0100 Subject: [PATCH] anonymise PutInBox action --- src/game/action.rs | 1 + 1 file changed, 1 insertion(+) 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(), } } -- 2.34.1