Skip to content

Commit

Permalink
Showing 5 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -5,7 +5,8 @@
*.suo
*.user
*.sln.docstates
*.userprefs
*.userprefs
*.vs/

# Build results
[Dd]ebug/
Binary file modified GameData/TestFlight/Plugins/TestFlight.dll
Binary file not shown.
Binary file modified GameData/TestFlight/Plugins/TestFlightCore.dll
Binary file not shown.
3 changes: 0 additions & 3 deletions TestFlightCore/TestFlightCore/TestFlightCore.csproj
Original file line number Diff line number Diff line change
@@ -56,9 +56,6 @@
<Reference Include="UnityEngine.UI">
<HintPath>..\..\..\..\..\..\..\..\..\Games\Kerbal Space Program 1.3.1 - RO\KSP_x64_Data\Managed\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="Vectrosity">
<HintPath>$(KSP_DLL_PATH)\Vectrosity.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
2 changes: 1 addition & 1 deletion TestFlightFailure_IgnitionFail.cs
Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@ public override void OnUpdate()
float multiplier = 1f;

// Check to see if the vessel has not launched and if the player disabled pad failures
if (this.vessel.situation == Vessel.Situations.PRELAUNCH && preLaunchFailures) {
if (this.vessel.situation == Vessel.Situations.PRELAUNCH && !preLaunchFailures) {
ignitionChance = 1.0f;
} else {
ignitionChance = baseIgnitionChance.Evaluate((float)initialFlightData);

0 comments on commit 2ed8360

Please sign in to comment.