fixed bug with seven counter
This commit is contained in:
Binary file not shown.
@@ -165,16 +165,20 @@ public class ActionHandler {
|
||||
* @return True if the card can be played, false otherwise.
|
||||
*/
|
||||
public boolean canPlay(Card c) {
|
||||
if (chosenSuit == null) {
|
||||
if (c.rank() == Rank.JACK) {
|
||||
return true;
|
||||
} else if (c.rank() == game.getCardHandler().getDiscardPile().getFirst().rank()) {
|
||||
return true;
|
||||
} else if (c.suit() == game.getCardHandler().getDiscardPile().getFirst().suit()) {
|
||||
return true;
|
||||
}
|
||||
if (ctr7 == 0 || c.rank() == Rank.SEVEN) {
|
||||
|
||||
if (chosenSuit == null) {
|
||||
if (c.rank() == Rank.JACK) {
|
||||
return true;
|
||||
} else if (c.rank() == game.getCardHandler().getDiscardPile().getFirst().rank()) {
|
||||
return true;
|
||||
} else if (c.suit() == game.getCardHandler().getDiscardPile().getFirst().suit()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (c.suit() == chosenSuit) {
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user