From ea543bbf5866e31f36628eef90aa8229649d77ac Mon Sep 17 00:00:00 2001 From: pranav-1711 Date: Wed, 16 Feb 2022 11:04:41 +0530 Subject: [PATCH] Plugins message fixed. Removed plguins not found message. Now all plugins proparly staged up. --- dist/ba_root/config.json | 24 +++++++++++++++--------- dist/ba_root/mods/plugins/__init__.py | 23 +++++++++++++++++++++++ 2 files changed, 38 insertions(+), 9 deletions(-) create mode 100644 dist/ba_root/mods/plugins/__init__.py diff --git a/dist/ba_root/config.json b/dist/ba_root/config.json index 7b4d2cc..d65e830 100644 --- a/dist/ba_root/config.json +++ b/dist/ba_root/config.json @@ -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": { diff --git a/dist/ba_root/mods/plugins/__init__.py b/dist/ba_root/mods/plugins/__init__.py new file mode 100644 index 0000000..e2c0392 --- /dev/null +++ b/dist/ba_root/mods/plugins/__init__.py @@ -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."""