From cc87e9d7323166bcece61937df2f3ea486249f63 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 12 Feb 2021 00:52:45 +0000 Subject: [PATCH] hidden: Fix type of PUO::PerPlayer This is keyed by PlayerId, ie a SecondaryMap Signed-off-by: Ian Jackson --- src/updates.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/updates.rs b/src/updates.rs index ee8002cd..bcb9c6ea 100644 --- a/src/updates.rs +++ b/src/updates.rs @@ -119,7 +119,7 @@ pub struct PieceUpdate { #[derive(Debug)] pub enum PieceUpdateOps { Simple(PieceUpdateOp<(),()>), - PerPlayer(DenseSlotMap>), + PerPlayer(SecondarySlotMap>), } impl From> for PieceUpdateOps { -- 2.30.2