From 10444b0a621d3ae19e065c85cb948279c9f66f14 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Fri, 15 May 2026 15:18:55 -0700 Subject: [PATCH] fix iteration order --- src/klondike.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/klondike.rs b/src/klondike.rs index 95683ee..c94619e 100644 --- a/src/klondike.rs +++ b/src/klondike.rs @@ -64,7 +64,7 @@ impl KlondikeInstruction { if let Some(next_src) = src.next() { return Some(Self { src: next_src, - dst: KlondikePileId::Stock, + dst: KlondikePileId::Tableau1, }); } None