public void fold() throws IllegalActionException, RemoteException {
if(!isSittingIn) {
throw new IllegalActionException("Can't act when not sitting in.");
}
try {
conn.sendRemote(new Fold(serial, game_id));
} catch (JSONException e) {
throw new IllegalActionException(e);
}
}