Merge pull request #214 from Freaku17/main

Fix a unnoticed typo
This commit is contained in:
Loup 2023-12-11 21:23:11 +05:30 committed by GitHub
commit 2605a2368f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 1 deletions

View file

@ -1,5 +1,9 @@
## Plugin Manager (dd-mm-yyyy)
### 1.0.5 (11-12-2023)
- Fix a typo.
### 1.0.4 (08-12-2023)
- Fix a few UI warnings related to 1.7.30.

View file

@ -1,6 +1,12 @@
{
"plugin_manager_url": "https://github.com/bombsquad-community/plugin-manager/{content_type}/{tag}/plugin_manager.py",
"versions": {
"1.0.5": {
"api_version": 8,
"commit_sha": "e417f41",
"released_on": "11-12-2023",
"md5sum": "3a27fb8fd11bc59ae6f2f2655bb151f3"
},
"1.0.4": {
"api_version": 8,
"commit_sha": "94abe80",

View file

@ -63,7 +63,7 @@ if TARGET_BALLISTICA_BUILD < 21282:
babase.app.env.arcade_mode = babase.app.arcade_mode
babase.app.env.headless_mode = babase.app.arcade_mode
babase.app.env.demo_mode = babase.app.demo_mode
babase.app.env.protocl_version = babase.app.protocol_version
babase.app.env.protocol_version = babase.app.protocol_version
_env = _babase.env()