From a3d4bdcd6fc2446e471799fa101b02530d133efa Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 16 Apr 2021 17:50:21 +0100 Subject: [PATCH] deck: Fix description of counting play piles Signed-off-by: Ian Jackson --- src/deck.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deck.rs b/src/deck.rs index 505bd522..04b4d305 100644 --- a/src/deck.rs +++ b/src/deck.rs @@ -117,7 +117,7 @@ impl PieceTrait for Deck { fn describe_html(&self, gpc: &GPiece, goccults: &GameOccults) -> Html { match self.state(gpc, goccults)? { Disabled => DISABLED_DESC, - Counting => ENABLED_DESC, + Counting => COUNTING_DESC, Enabled => ENABLED_DESC, }.into() } -- 2.30.2