Skip to content

Commit c4eba83

Browse files
committed
Fix comment for the efficiency capability.
1 parent eac730d commit c4eba83

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Startups/Game.hs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,10 @@ playAge age = do
236236
cards <- dealCards age
237237
let turnPlay crds turn = do
238238
ncrds <- playTurn age turn crds
239-
if turn == 7 -- The 7th turn is a hack for the efficiency capacity
239+
-- 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
240243
then return ncrds
241244
else rotateHands age ncrds
242245
remaining <- foldM turnPlay cards [1 .. 7]

0 commit comments

Comments
 (0)