mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2026-08-15 13:04:30 +00:00
Plugins message fixed.
Removed plguins not found message. Now all plugins proparly staged up.
This commit is contained in:
parent
3957db3fd7
commit
ea543bbf58
2 changed files with 38 additions and 9 deletions
24
dist/ba_root/config.json
vendored
24
dist/ba_root/config.json
vendored
|
|
@ -432,15 +432,21 @@
|
|||
}
|
||||
},
|
||||
"Plugins": {
|
||||
"CharacterChooser.HeySmoothy": {
|
||||
"enabled": true
|
||||
},
|
||||
"bobmsquadhttpapi.HeySmoothy": {
|
||||
"enabled": false
|
||||
},
|
||||
"importcustomcharacters.HeySmoothy": {
|
||||
"enabled": true
|
||||
}
|
||||
"plugins.Init": {
|
||||
"enabled": true
|
||||
},
|
||||
"plugins.CharacterChooser.HeySmoothy": {
|
||||
"enabled": true
|
||||
},
|
||||
"plugins.bombsquadhttpapi.HeySmoothy": {
|
||||
"enabled": false
|
||||
},
|
||||
"plugins.importcustomcharacters.HeySmoothy": {
|
||||
"enabled": false
|
||||
},
|
||||
"plugins.wavedash.MikiWavedashTest": {
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
"Port": 43210,
|
||||
"Region Pings": {
|
||||
|
|
|
|||
23
dist/ba_root/mods/plugins/__init__.py
vendored
Normal file
23
dist/ba_root/mods/plugins/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
|
||||
license : MIT, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
# ba_meta require api 6
|
||||
# (see https://ballistica.net/wiki/meta-tag-system)
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
import ba
|
||||
|
||||
if TYPE_CHECKING:
|
||||
pass
|
||||
|
||||
# ba_meta export plugin
|
||||
class Init(ba.Plugin): # pylint: disable=too-few-public-methods
|
||||
"""Initializes all of the plugins in the directory."""
|
||||
Loading…
Add table
Add a link
Reference in a new issue