Skip to content

Commit

Permalink
Fix comment for the efficiency capability.
Browse files Browse the repository at this point in the history
  • Loading branch information
bartavelle committed May 14, 2014
1 parent eac730d commit c4eba83
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Startups/Game.hs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,10 @@ playAge age = do
cards <- dealCards age
let turnPlay crds turn = do
ncrds <- playTurn age turn crds
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
-- case, the hands should not be rotated as the rules stipulate
-- that the player can play the two cards he has in hands.
if turn == 6
then return ncrds
else rotateHands age ncrds
remaining <- foldM turnPlay cards [1 .. 7]
Expand Down

0 comments on commit c4eba83

Please sign in to comment.