public void checkOrCall() throws IllegalActionException, RemoteException {
if(!isSittingIn) {
throw new IllegalActionException("Can't act when not sitting in.");
}
try {
if(betLimitCall==0) conn.sendRemote(new Check(serial, game_id));
else conn.sendRemote(new Call(serial, game_id));
} catch (JSONException e) {
throw new IllegalActionException(e);
}
}