Skip to content

Commit

Permalink
Lowered unpressurized cockpit max alt to 30km
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanKell committed Jan 30, 2019
1 parent ec146bb commit c5e8b45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified GameData/RP-0/Plugins/RP0.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/ModuleUnpressurizedCockpit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class ModuleUnpressurizedCockpit : PartModule

public override string GetInfo()
{
return "Cockpit is unpressurized and will lead to crew death above 50km";
return "Cockpit is unpressurized and will lead to crew death above 30km";
}

public override void OnAwake()
Expand All @@ -39,7 +39,7 @@ protected void FixedUpdate()
if (UT > nextCheck)
{
nextCheck = UT + checkInterval;
if (part.staticPressureAtm * 101.325d < 0.075d)
if (part.staticPressureAtm * 101.325d < 1.2d)
{
bool kill = false;
for(int i = pC; i-- > 0;)
Expand Down

0 comments on commit c5e8b45

Please sign in to comment.