From: Kevin Worth Date: Sat, 4 Feb 2006 18:50:43 +0000 (+0000) Subject: Kub can now _reliably_ shuffle deck and deal in 1-4 players X-Git-Url: https://git.cworth.org/git?p=ttt;a=commitdiff_plain;h=a8925bfcf99614560389cafd813951d827c08d68 Kub can now _reliably_ shuffle deck and deal in 1-4 players --- diff --git a/kub/kub.c b/kub/kub.c index 5377fc4..f9dfc34 100755 --- a/kub/kub.c +++ b/kub/kub.c @@ -218,6 +218,7 @@ static void hand_print(game_t *game) int i; for (i = 0; i < game->players[0].hand.num_cards; ++i) { + printf ("Player 1 has these tiles:\n"); card_print(game->players[0].hand.cards[i]); } }