Skip to content

Instantly share code, notes, and snippets.

@yamanaiyuki
Created September 23, 2021 06:34
Show Gist options
  • Save yamanaiyuki/8c20536bad74358d66666acb93c834e3 to your computer and use it in GitHub Desktop.
Save yamanaiyuki/8c20536bad74358d66666acb93c834e3 to your computer and use it in GitHub Desktop.
RemoteTechRedevAntennasをカーゴ対応させるパッチ(動作にはModuleManagerが必要です)
//Add support for cargo storage on small RemoteTech antennas
//https://github.com/RemoteTechnologiesGroup/RemoteTech/commit/20e0f61ce40879c2af82de141e726dd92b37bdb0
//https://github.com/RemoteTechnologiesGroup/RemoteTech/blob/develop/GameData/RemoteTech/Parts/LongAntenna2/part.cfg
@PART[RTLongAntenna2]:HAS[!@MODULE[ModuleCargoPart]]:NEEDS[RemoteTech-Antennas]
{
MODULE
{
name = ModuleCargoPart
stackableQuantity = 4
packedVolume = 2
}
}
//https://github.com/RemoteTechnologiesGroup/RemoteTech/blob/develop/GameData/RemoteTech/Parts/LongAntenna3/part.cfg
@PART[RTLongAntenna3]:HAS[!@MODULE[ModuleCargoPart]]:NEEDS[RemoteTech-Antennas]
{
MODULE
{
name = ModuleCargoPart
stackableQuantity = 4
packedVolume = 1
}
}
//https://github.com/RemoteTechnologiesGroup/RemoteTech/blob/develop/GameData/RemoteTech/Parts/ShortDish2/part.cfg
@PART[RTShortDish2]:HAS[!@MODULE[ModuleCargoPart]]:NEEDS[RemoteTech-Antennas]
{
MODULE
{
name = ModuleCargoPart
packedVolume = 650
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment