summaryrefslogtreecommitdiff
path: root/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Main.hs b/Main.hs
index 1992399..7e66efa 100644
--- a/Main.hs
+++ b/Main.hs
@@ -9,7 +9,7 @@ import Game (Game(..),
discardPile,
prompt,
dealCards,
- nextRound,
+ beginRounds,
)
import Player (Player(..))
import qualified Player as P
@@ -33,5 +33,5 @@ main = do
, discardPile = discard
}
- nextRound 1 $ dealCards 6 game
+ beginRounds 1 $ dealCards 6 game
print ()