Update plugin_manager.py

This commit is contained in:
Vishal 2024-05-12 04:03:23 +05:30 committed by GitHub
parent 50e72ec07c
commit 5c5509b7cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,8 +39,11 @@ CURRENT_TAG = "main"
if TARGET_BALLISTICA_BUILD < 21852: if TARGET_BALLISTICA_BUILD < 21852:
babase.app.env.engine_build_number = babase.app.env.build_number class Dummy(babase.app.env):
babase.app.env.engine_version = babase.app.env.version engine_build_number = babase.app.env.build_number
engine_version = babase.app.env.version
babase.app.env = Dummy
if TARGET_BALLISTICA_BUILD < 21282: if TARGET_BALLISTICA_BUILD < 21282:
# These attributes have been deprecated as of 1.7.27. For more info see: # These attributes have been deprecated as of 1.7.27. For more info see: