diff --git a/Distribution/Restock/GameData/ReStock/Compatibility/RemoteTech.cfg b/Distribution/Restock/GameData/ReStock/Compatibility/RemoteTech.cfg new file mode 100644 index 00000000..d1cb40d9 --- /dev/null +++ b/Distribution/Restock/GameData/ReStock/Compatibility/RemoteTech.cfg @@ -0,0 +1,37 @@ +// RemoteTech support +// RT changes the antenna modules to be ModuleAnimateGeneric based, so need to target those + +// Communotron 16 +@PART[longAntenna]:AFTER[ReStock]:NEEDS[RemoteTech] +{ + @MODULE[ModuleAnimateGeneric] + { + @animationName = Deploy + } +} + +// Communotron DTS-M1 +@PART[mediumDishAntenna]:AFTER[ReStock]:NEEDS[RemoteTech] +{ + @MODULE[ModuleAnimateGeneric] + { + @animationName = Deploy + } +} + +// Communotron HG-55 +@PART[HighGainAntenna]:AFTER[ReStock]:NEEDS[RemoteTech] + @MODULE[ModuleAnimateGeneric] + { + @animationName = Deploy_Radial + } +} + +// Communotron 88-88 +@PART[commDish]:AFTER[ReStock]:NEEDS[RemoteTech] +{ + @MODULE[ModuleAnimateGeneric] + { + @animationName = Deploy + } +} diff --git a/Distribution/Restock/changelog.txt b/Distribution/Restock/changelog.txt index 879e901e..bfac4906 100644 --- a/Distribution/Restock/changelog.txt +++ b/Distribution/Restock/changelog.txt @@ -8,6 +8,7 @@ v1.0.1 - Fixed Skippper orange boattail texture assignments (#754) - Fixed large truss piece collider scaling (#753) - Un-blacklisted legacy squad spark model (we don't have an appropriate replacement anymore) +- Added compatability patch for RemoteTech v1.0.0 ------