From cfc3a2ebac3702c5517847a22a75e682aa219e9a Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 4 May 2021 13:02:54 -0400 Subject: [PATCH] Solitaire: Bump stacked cards down to reveal suit Stacks of cards currently cover the suit completely and players must click-and-drag cards out of the way to see the suit beneath other cards. This bumps the stacks down a bit to let players peek the suit without having to take any action. --- Userland/Games/Solitaire/CardStack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Games/Solitaire/CardStack.h b/Userland/Games/Solitaire/CardStack.h index 6a399f6065..589da87443 100644 --- a/Userland/Games/Solitaire/CardStack.h +++ b/Userland/Games/Solitaire/CardStack.h @@ -57,7 +57,7 @@ private: case Foundation: return { 2, 1, 4, 1 }; case Normal: - return { 0, 15, 1, 3 }; + return { 0, 20, 1, 3 }; case Stock: case Waste: return { 2, 1, 8, 1 };