Skip to content

Commit

Permalink
players running this version or newer get a 10 percent league score b…
Browse files Browse the repository at this point in the history
…onus (replaces pro bonus)
  • Loading branch information
efroemling committed Jan 18, 2025
1 parent 4dbe0be commit 091b369
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 78 deletions.
60 changes: 30 additions & 30 deletions .efrocachemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 1.7.37 (build 22200, api 9, 2025-01-17)
### 1.7.37 (build 22202, api 9, 2025-01-18)
- Bumping api version to 9. As you'll see below, there's some UI changes that
will require a bit of work for any UI mods to adapt to. If your mods don't
touch UI stuff at all you can simply bump your api version and call it a day.
Expand Down
6 changes: 5 additions & 1 deletion src/assets/ba_data/python/baclassic/_accountv1.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ def get_league_rank_points(
if subset is not None:
raise ValueError('invalid subset value: ' + str(subset))

if data['p']:
# We used to give this bonus for pro, but on recent versions of
# the game give it for everyone (since we are phasing out Pro).

# if data['p']:
if bool(True):
if babase.app.plus is None:
pro_mult = 1.0
else:
Expand Down
2 changes: 1 addition & 1 deletion src/assets/ba_data/python/baenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# Build number and version of the ballistica binary we expect to be
# using.
TARGET_BALLISTICA_BUILD = 22200
TARGET_BALLISTICA_BUILD = 22202
TARGET_BALLISTICA_VERSION = '1.7.37'


Expand Down
Loading

0 comments on commit 091b369

Please sign in to comment.