Thad a poblem loading this mod, specifically, the Mk2 reactors freezing up the module manager, and after a few days i figured out the problem, when you have near future electrical, Mk2 expanded has a patch to remove the conversion module and replace it with a "fissionreactor" module so the power patch in Mk2_KSPI Integration froze up the module manager when trying to get rid of the conversion module because there wasn't one. I fixed it myself by replacing, on all parts, "!MODULE[ModuleResourceConverter]{}" with the two lines "!MODULE[ModuleResourceConverter]:NEEDS[!NearFutureElectrical]{}" to apply when near future electical is NOT present and "!MODULE[FissionReactor]:NEEDS[NearFutureElectrical]{}" for when it is present. I also had to add ":AFTER[Mk2Expansion]" because this patch would, for some reason, get applied before mk2_Expansions near future electrical patch and that would cause a similar problem, so this patch needs to go after MK2_expansion loads all its patches. Hope this helps!