bug fixed

This commit is contained in:
marcus 2009-10-19 17:59:19 +02:00
parent 5cf970f0f3
commit 6049a601fb

View file

@ -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);