Skip to content

Commit

Permalink
Merge pull request #126 from zer0Kerbal/1.12.1.0
Browse files Browse the repository at this point in the history
1.12.1.0 (2017-04-09) - MFT fix
  • Loading branch information
zer0Kerbal authored Apr 12, 2022
2 parents 9c824e9 + 247af62 commit 14976aa
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
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"
}

0 comments on commit 14976aa

Please sign in to comment.