Skip to content

Commit 0b56d37

Browse files
committed
v1.7.57
1 parent 6d6f2e4 commit 0b56d37

File tree

5 files changed

+36
-33
lines changed

5 files changed

+36
-33
lines changed

.efrocachemap

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 1.7.57 (build 22658, api 9, 2025-12-05)
1+
### 1.7.57 (build 22660, api 9, 2025-12-06)
22
- Fixed an issue where holding left or right on a keyboard with fast key repeats
33
would cause weird laggy scrolling.
44
- Adding purple tickets, which will likely be an ultra-rare type of ticket

src/assets/ba_data/python/baenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
# Build number and version of the ballistica binary we expect to be
5858
# using.
59-
TARGET_BALLISTICA_BUILD = 22658
59+
TARGET_BALLISTICA_BUILD = 22660
6060
TARGET_BALLISTICA_VERSION = '1.7.57'
6161

6262

src/assets/ba_data/python/bauiv1lib/chest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,9 @@ def _mktxt(txt: str, advance: bool = True) -> None:
802802
if isinstance(item.item, ditm.Tickets):
803803
_mktxt(str(item.item.count))
804804
_mkicon('tickets')
805+
elif isinstance(item.item, ditm.TicketsPurple):
806+
_mktxt(str(item.item.count))
807+
_mkicon('ticketsPurple')
805808
elif isinstance(item.item, ditm.Tokens):
806809
_mktxt(str(item.item.count))
807810
_mkicon('coin')

src/ballistica/shared/ballistica.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ auto main(int argc, char** argv) -> int {
4444
namespace ballistica {
4545

4646
// These are set automatically via script; don't modify them here.
47-
const int kEngineBuildNumber = 22658;
47+
const int kEngineBuildNumber = 22660;
4848
const char* kEngineVersion = "1.7.57";
4949
const int kEngineApiVersion = 9;
5050

0 commit comments

Comments
 (0)