private void CheckDeclarations(Player player) { var toAdd = 0; if (player.GetDeck().Size() != 8) { return; } player.CheckBelote(_trump); if ((toAdd += player.HasAllFour()) != 0) { Broadcast("MSG " + player.GetName() + " has an all-four!"); } _teams[player.GetId() % 2].AddScore(toAdd); if (toAdd != 0) { Broadcast("MSG " + _teams[player.GetId() % 2].GetName() + " has now " + _teams[player.GetId() % 2].GetScore() + " points."); } }