diff --git a/src/game/BaseGame.java b/src/game/BaseGame.java index b846af2..9b5e0bd 100644 --- a/src/game/BaseGame.java +++ b/src/game/BaseGame.java @@ -81,7 +81,7 @@ loadOptions(); loadFont(); //establishConnection(); - CARDS_PER_PLAYER = (N_PLAYERS < 3) ? 5 : 4; + CARDS_PER_PLAYER = (N_PLAYERS <= 3) ? 5 : 4; hints = MAX_HINTS; thunders = 0; roundsLeft = -1; @@ -361,6 +361,7 @@ protected void placeCard(Card c, int color, int value){ deckCounter[color]++; deck[color][value] = c; + if(value == 5) addHint(); } protected void onNext(){