I am currently working my way through updating an old KSP 1.1 mod to make it compatible with KSP 1.3. All is fine apart from one issue in the original code there is a function
AssemblyLoader.loadedAssemblies.TypeOperation(t =>
{
if (t.FullName == name)
{
type = t;
}
});
however TypeOperation no longer exists on the loadedAssemblies object.
Can anyone put me on the right path to the correct syntax for KSP 1.3 ?