mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
multiple changes
- load plugins when loading a game - moved plugins scripts to resources/plugins (for pyinstaller) - removed vanilla JTAC and JTAC_smoke options and settings GUI - call JtacAutolasePlugin in armor.py - made a dictionary of INSTALLED_PLUGINS - removed NIOD from the VEAF plugin
This commit is contained in:
@@ -3,8 +3,8 @@ from .veaf_plugin import VeafPlugin
|
||||
from .jtacautolase_plugin import JtacAutolasePlugin
|
||||
from .liberation_plugin import LiberationPlugin
|
||||
|
||||
INSTALLED_PLUGINS=[
|
||||
VeafPlugin(),
|
||||
JtacAutolasePlugin(),
|
||||
LiberationPlugin()
|
||||
]
|
||||
INSTALLED_PLUGINS={
|
||||
"VeafPlugin": VeafPlugin(),
|
||||
"JtacAutolasePlugin": JtacAutolasePlugin(),
|
||||
"LiberationPlugin": LiberationPlugin(),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user