Skip to content

Commit

Permalink
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
@@ -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()
@@ -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;)

0 comments on commit c5e8b45

Please sign in to comment.