Skip to content

Commit

Permalink
Remove cueing restrictions (#4)
Browse files Browse the repository at this point in the history
The master code restricts cueing near the border, whether or not the
cue actually interferes with the table. This results in a playing
experience that is needlessly frustrating.

Dodge the restrictive code, leaving restrictions to the player’s own
judgement.
  • Loading branch information
mashu97 authored Oct 27, 2023
1 parent 19b779c commit cb3d3cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/billard3d.c
Original file line number Diff line number Diff line change
Expand Up @@ -2314,6 +2314,7 @@ VMfloat angle_pm90ud(VMfloat ang)

void check_cue(void) {

#ifdef CUEING_DOESNT_GET_STUCK_BY_BORDER_ANY_MORE
int cue_ball = CUE_BALL_IND; // index cue-ball
int i; //loop
VMvect dir,cue_start_bande,nx,ny,pos,hitpoint;
Expand Down Expand Up @@ -2377,6 +2378,7 @@ void check_cue(void) {
}
}
}
#endif
}

/***********************************************************************
Expand Down

0 comments on commit cb3d3cf

Please sign in to comment.