fixed bug with seven counter

This commit is contained in:
Johannes Schmelz 2024-06-19 11:43:35 +02:00
parent 094c17d16a
commit e58808bbbc
2 changed files with 12 additions and 8 deletions

View File

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