3b6c8d2aab
Drawing from a non-empty stock and recycling a non-empty waste are always legal moves in standard Klondike (unlimited recycles). The old implementation only scanned face-up tableau cards and the waste top for valid placements, returning false for any fresh deal where the initial 7 face-up cards had no immediate destination — causing a spurious "No more moves" game-over dialog at Moves: 0. The correct stuck condition is stock=0 AND waste=0 AND no visible card can be placed. Updated the "false when stock unplayable" test to assert true instead, since a non-empty stock means drawing is always legal. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>