Plugins message fixed.

Removed plguins not found message.
Now all plugins proparly staged up.
This commit is contained in:
pranav-1711 2022-02-16 11:04:41 +05:30
parent 3957db3fd7
commit ea543bbf58
2 changed files with 38 additions and 9 deletions

View file

@ -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
View 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."""