Skip to content

Commit

Permalink
1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthPointer authored Jul 14, 2020
2 parents 6c53484 + 8e8871c commit d28e9f4
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GameData/PayToPlay/PayToPlay.version
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"NAME": "PayToPlay",
"URL": "https://raw.githubusercontent.com/DarthPointer/PayToPlay/master/GameData/PayToPlay/PayToPlay.version",
"DOWNLOAD": "https://github.com/DarthPointer/PayToPlay/releases",
"VERSION": {"MAJOR": 1, "MINOR": 5, "PATCH": 0, "BUILD": 0},
"VERSION": {"MAJOR": 1, "MINOR": 5, "PATCH": 1, "BUILD": 0},
"KSP_VERSION": {"MAJOR": 1, "MINOR": 8, "PATCH": 1},
"KSP_VERSION_MIN": {"MAJOR": 1, "MINOR": 8, "PATCH": 0},
"KSP_VERSION_MAX": {"MAJOR": 1, "MINOR": 10, "PATCH": 9}
Expand Down
Binary file modified GameData/PayToPlay/Plugins/EngineDecay.dll
Binary file not shown.
Binary file modified Source/EngineDecay/.vs/EngineDecay/v16/.suo
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/EngineDecay/EngineDecay/EngineDecay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class EngineDecay : PartModule, IPartMassModifier, IPartCostModifier
float r = 0;

[KSPField(isPersistant = true, guiActive = false)]
bool reliabilityIsVisible;
bool reliabilityIsVisible = true;

[KSPField(isPersistant = true, guiActive = false)]
float currentBaseRatedTime;
Expand Down Expand Up @@ -512,7 +512,7 @@ void SwitchTimeFormat()

void UpdateIndicators()
{
if (reliabilityIsVisible)
if (reliabilityIsVisible || !PayToPlaySettingsFeatures.HideStartingReliability)
{
burnTimeIndicator = string.Format("{0} / {1}", Lib.Format(usedBurnTime, usingTimeFormat), Lib.Format(setBurnTime, usingTimeFormat));
}
Expand Down
Binary file modified Source/EngineDecay/EngineDecay/bin/Debug/EngineDecay.dll
Binary file not shown.
Binary file modified Source/EngineDecay/EngineDecay/bin/Debug/EngineDecay.pdb
Binary file not shown.
Binary file modified Source/EngineDecay/EngineDecay/obj/Debug/EngineDecay.dll
Binary file not shown.
Binary file modified Source/EngineDecay/EngineDecay/obj/Debug/EngineDecay.pdb
Binary file not shown.

0 comments on commit d28e9f4

Please sign in to comment.