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. * @return True if the card can be played, false otherwise.
*/ */
public boolean canPlay(Card c) { public boolean canPlay(Card c) {
if (chosenSuit == null) { if (ctr7 == 0 || c.rank() == Rank.SEVEN) {
if (c.rank() == Rank.JACK) {
return true; if (chosenSuit == null) {
} else if (c.rank() == game.getCardHandler().getDiscardPile().getFirst().rank()) { if (c.rank() == Rank.JACK) {
return true; return true;
} else if (c.suit() == game.getCardHandler().getDiscardPile().getFirst().suit()) { } else if (c.rank() == game.getCardHandler().getDiscardPile().getFirst().rank()) {
return true; return true;
} else if (c.suit() == game.getCardHandler().getDiscardPile().getFirst().suit()) {
return true;
}
} }
} }
if (c.suit() == chosenSuit) { if (c.suit() == chosenSuit) {
return true; return true;
} }