Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.12.1.0 (2017-04-09) - MFT fix #126

Merged
merged 1 commit into from
Apr 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions FuelTanksPlus.version
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
{
"MAJOR" : 1,
"MINOR" : 12,
"PATCH" : 0,
"PATCH" : 1,
"BUILD" : 0
},
"KSP_VERSION" :
{
"MAJOR" : 1,
"MINOR" : 2,
"PATCH" : 2
"MINOR" : 3,
"PATCH" : 0
},
"KSP_VERSION_MIN" :
{
Expand Down
3 changes: 3 additions & 0 deletions GameData/NecroBones/FuelTanksPlus/FuelTanksPlus-CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.12.1 (2017-04-09) - MFT fix.
- Corrected some MM patch issues for ModularFuelTanks.

1.12 (2017-04-07) - Tweaks & Fixes.
- Corrected a typo that was preventing the B9PartSwitch patches from applying correctly on the radial tanks.
- Slightly increased the performance of the 2m/3m stack decouplers, and increased their propellant maximums.
Expand Down
6 changes: 3 additions & 3 deletions GameData/NecroBones/FuelTanksPlus/FuelTanksPlus.version
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
{
"MAJOR" : 1,
"MINOR" : 12,
"PATCH" : 0,
"PATCH" : 1,
"BUILD" : 0
},
"KSP_VERSION" :
{
"MAJOR" : 1,
"MINOR" : 2,
"PATCH" : 2
"MINOR" : 3,
"PATCH" : 0
},
"KSP_VERSION_MIN" :
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
@PART[TPtank*|TPcone*|TPdome*]:FOR[FuelTanksPlus]:NEEDS[ModularFuelTanks]
{
origLFO = #$RESOURCE[LiquidFuel]/maxAmount$
@origLFO += #$RESOURCE[Oxidizer]/maxAmount$

origLFO = 0
}
@PART:HAS[#origLFO[0],@RESOURCE[LiquidFuel]:HAS[#maxAmount[>0]]]:FOR[FuelTanksPlus]:NEEDS[ModularFuelTanks]
{
@origLFO += #$RESOURCE[LiquidFuel]:HAS[#maxAmount[>0]]/maxAmount$
}
@PART:HAS[#origLFO[*],@RESOURCE[Oxidizer]:HAS[#maxAmount[>0]]]:FOR[FuelTanksPlus]:NEEDS[ModularFuelTanks]
{
@origLFO += #$RESOURCE[Oxidizer]:HAS[#maxAmount[>0]]/maxAmount$
}
@PART:HAS[#origLFO[>-1]]:FOR[FuelTanksPlus]:NEEDS[ModularFuelTanks]
{
MODULE
{
name = ModuleFuelTanks
Expand Down
2 changes: 1 addition & 1 deletion json/ksp.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"schemaVersion": 1,
"label": "KSP",
"labelColor": "black",
"message": "1.2.2",
"message": "1.3.0",
"color": "66ccff",
"style": "plastic"
}
2 changes: 1 addition & 1 deletion json/mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"schemaVersion": 1,
"label": "Fuel Tanks Plus",
"labelColor": "BADA55",
"message": "1.12.0.0",
"message": "1.12.1.0",
"color": "darkgreen",
"style": "plastic"
}