From 6049a601fbbc5572c03ecb5c5c9ce163c36c1250 Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 19 Oct 2009 17:59:19 +0200 Subject: [PATCH] bug fixed --- cockatrice/src/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/player.cpp b/cockatrice/src/player.cpp index 84403e61..dfc7f559 100644 --- a/cockatrice/src/player.cpp +++ b/cockatrice/src/player.cpp @@ -337,7 +337,7 @@ void Player::actDrawCard() void Player::actMuligan() { - if(cardsInHand >= 0) return; + if(cardsInHand <= 0) return; CardList handCards = hand->getCards(); for(int i = 0; i < handCards.size(); i++){ client->moveCard(handCards.at(i)->getId(),"hand","deck",0);