CobaltWolf / Bluedog-Design-Bureau

Stockalike parts pack for Kerbal Space Program
https://forum.kerbalspaceprogram.com/index.php?/topic/122020-131mostly-functional-141-bluedog-design-bureau-stockalike-saturn-apollo-and-more-v142-%D0%B0%D1%82%D0%BB%D0%B0%D1%81-1feb2018/
120 stars 144 forks source link

RSE compatibility fixes #1491

Closed JacobB094 closed 2 months ago

JacobB094 commented 2 months ago

Fixes for multimode SRBs and a few other issues, plus an update to support the merged Titan parts.

Rodg88 commented 2 months ago

noticed some FOR passes in the patches, and these shouldn't be used in compatibility patches. FOR isn't just for normal patch ordering, but it actually declares that pass. So having FOR[zzRocketSoundEnhancementDefault] in a patch will cause Module Manager to create a zzRocketSoundEnhancementDefault pass, even if RSE isn't installed, causing any other patch that requires that pass to activate incorrectly. It's just some confusing language on MM's part. BEFORE[passname], AFTER[passname], or FINAL[passname] should be used instead.

Rodg88 commented 2 months ago

Just added some realplume compat, and changed FOR to AFTER.