MetalStormGhost e5bb341f5b
A-6A Intruder with Adecarcer's hardpoint options from A-7E mod (#153)
* A-6A Intruder with Adecarcer's hardpoint options from A-7E mod

Enabled Adecarcer's modified hardpoint options for the A-6A Intruder mod, now also including weapons from the A-7E Corsair II mod. Please note that the A-7E mod will need to be installed if one wants to use those weapons.

* Moved the import "from pydcs_extensions import WeaponsA7E" to within the VSN_A6A pylon objects to help solve the "cannot import from partially initialized module" error.

* Import pydcs_extensions.a7e before pydcs_extensions.a6a to help solve the "cannot import from partially initialized module" error.

* Added inject_weapons(WeaponsA7E) in a6a.py
2023-06-25 18:21:15 +02:00

34 lines
835 B
Python

from .SWPack import *
from .a4ec import *
from .a7e import *
from .a6a import *
from .f100 import *
from .f104 import *
from .f105 import *
from .f15d import *
from .f16i_idf import *
from .f22a import *
from .f4b import *
from .f84g import *
from .fa18efg import *
from .frenchpack import *
from .hercules import *
from .highdigitsams import *
from .irondome import *
from .jas39 import *
from .ov10a import *
from .spanishnavypack import *
from .su30 import *
from .su57 import *
from .swedishmilitaryassetspack import *
from .uh60l import *
def load_mods() -> None:
"""Loads all mods.
Note that this function doesn't *do* anything. Its purpose is to prevent editors
from removing `import pydcs_extensions` when it is "unused", because mod imports
have side effects (unit types are registered with pydcs).
"""