Skip to content

Commit

Permalink
fix low ar bonus (closes #74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco149 committed Mar 5, 2021
1 parent bbbeb9f commit 3088fc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oppai.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ OPPAIAPI char* oppai_version_str(void);
#include <math.h>

#define OPPAI_VERSION_MAJOR 4
#define OPPAI_VERSION_MINOR 0
#define OPPAI_VERSION_MINOR 1
#define OPPAI_VERSION_PATCH 0
#define STRINGIFY_(x) #x
#define STRINGIFY(x) STRINGIFY_(x)
Expand Down Expand Up @@ -2103,7 +2103,7 @@ int pp_std(ezpp_t ez) {

/* low ar bonus */
else if (ez->ar < 8.0f) {
ar_bonus += 0.1f * (8.0f - ez->ar);
ar_bonus += 0.01f * (8.0f - ez->ar);
}

/* aim pp ---------------------------------------------------------- */
Expand Down

0 comments on commit 3088fc9

Please sign in to comment.