We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eac730d commit c4eba83Copy full SHA for c4eba83
1 file changed
Startups/Game.hs
@@ -236,7 +236,10 @@ playAge age = do
236
cards <- dealCards age
237
let turnPlay crds turn = do
238
ncrds <- playTurn age turn crds
239
- if turn == 7 -- The 7th turn is a hack for the efficiency capacity
+ -- The 7th turn is a hack for the efficiency capacity. In that
240
+ -- case, the hands should not be rotated as the rules stipulate
241
+ -- that the player can play the two cards he has in hands.
242
+ if turn == 6
243
then return ncrds
244
else rotateHands age ncrds
245
remaining <- foldM turnPlay cards [1 .. 7]
0 commit comments