int bidInt = player.bid(trump, minBid, cardsDealt, notAllowedToBid);
if(bidInt == notAllowedToBid) {
System.err.print("illegal bid");
throw new RuntimeException("illegal bid");
}
bid.addIndividualBid(new IndividualBid(player, bidInt));
if(go.getBidType().equals(BidType.STANDARD) ||
go.getBidType().equals(BidType.EVEN) ||
go.getBidType().equals(BidType.CANADIAN) ||
go.getBidType().equals(BidType.HARDCORE)
) {