Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues with OrbitalTestFlight contract #2307

Merged
merged 1 commit into from
Dec 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 9 additions & 15 deletions GameData/RP-1/Contracts/Earth Crewed/OrbitalTestFlight.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,16 @@ CONTRACT_TYPE
title = Launch a new vessel
hideChildren = true
}

PARAMETER
{
name = OneCrewCapacity
type = HasCrewCapacity
minCapacity = 1
title = Have space for at least 1 crewmember on board
hideChildren = true
disableOnStateChange = false
}

PARAMETER
{
name = NoUnpressurized
Expand All @@ -111,7 +112,8 @@ CONTRACT_TYPE
{
partModule = ModuleUnpressurizedCockpit
}
}
}

PARAMETER
{
name = NoCrew
Expand All @@ -124,26 +126,18 @@ CONTRACT_TYPE

PARAMETER
{
name = OrbitWrapper
title = Stay in specified orbit for the duration
type = All
name = Orbit
type = Orbit
minPeA = 150000
targetBody = HomeWorld()
disableOnStateChange = true
completeInSequence = true

PARAMETER
{
name = Orbit
type = Orbit
minPeA = 150000
targetBody = HomeWorld()
}

PARAMETER
{
name = Duration
type = Duration
duration = 1h 27m
preWaitText = Reach specified orbit
preWaitText = Stay in specified orbit for the duration
waitingText = Completing orbit...
completionText = Orbit completed, you may fire retros when ready.
}
Expand Down