Skip to content

Commit ed1c646

Browse files
committed
Fixes the inflatable heatshield not having ablator
1 parent dc84672 commit ed1c646

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ This project aims to bring together community bug fixes for Kerbal Space Program
1818
- **Time Warp Thrust Fix** by [SunSerega](https://github.com/SunSerega) - Fixes the bug where thrust under time warp was sometimes not working despite draining fuel.
1919
- **Save/Load DateTime Fix** by [bizzehdee](https://github.com/bizzehdee) - Displays dates and times of save files in the correct locale format.
2020
- **Tracking Station Debris Name Fix** by [polo](https://github.com/pasalvetti) - Replaces the object's guid with a human-readable name: "Debris of [ship name]".
21+
- **Inflatable heatshield Fix** by [polo](https://github.com/pasalvetti) - Fixes the inflatable heatshield not having ablator".
2122

2223
## Planned fixes
2324
To see what fixes are planned to be implemented, you can visit the [Issues page](https://github.com/KSP2Community/CommunityFixes/issues) on the project's GitHub.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
:parts #heatshield_2v_inflatable {
2+
resourceContainers: +[
3+
{
4+
name: "Ablator",
5+
capacityUnits: 0.8,
6+
initialUnits: 0.8,
7+
NonStageable: false
8+
}
9+
];
10+
+Module_Heatshield {
11+
+Data_Heatshield {
12+
IsDeployed: false;
13+
IsAblating: false;
14+
HasEnoughResources: false;
15+
AblatorRatio: 1.0;
16+
AblatorTonnesPerSecond: 1.0;
17+
FluxRemoved: 0.0;
18+
ShieldingDirectionScale: 1.0;
19+
IsAblatorExhausted: false;
20+
requiredResources: [
21+
{
22+
Rate: 0.5,
23+
ResourceName: "Ablator",
24+
AcceptanceThreshold: 0.001
25+
}
26+
];
27+
AblationTempThreshold: 1000.0;
28+
AblationMaximumOverThreshold: 50.0;
29+
PyrolysisLossFactor: 0.00000016;
30+
ShieldingScale: 1.0;
31+
ShieldingDirection: {
32+
x: 0.0,
33+
y: -1.0,
34+
z: 0.0
35+
};
36+
DisabledWhenRetracted: true;
37+
UseChar: true;
38+
CharMaterialName: "heatshield_2v_inflatable";
39+
CharMin: 0.0;
40+
CharMax: 1.0;
41+
AblatorMaxValue: 1.0;
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)