Skip to content

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
severedsolo committed May 24, 2020
1 parent 7c1c2f2 commit 4642cbd
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ExplorationPlus-Gemini.cfg
Expand Up @@ -25,8 +25,8 @@ CONTRACT_TYPE
{
type = CelestialBody
uniquenessCheck = CONTRACT_ACTIVE
targetBody1 = LandedBodies().Where(b => !b.HaveReturnedFrom() && b.HasSurface() && !b.IsHomeWorld()).SelectUnique()
title = Must have landed on a celestial body, but not returned from it.
targetBody1 = OrbitedBodies().Where(b => !b.HaveReturnedFrom() && b.HasSurface() && !b.IsHomeWorld()).SelectUnique()
title = Must have orbited a celestial body, but not returned from it.
}

DATA
Expand Down
2 changes: 1 addition & 1 deletion ExplorationPlus-Landing.cfg
Expand Up @@ -25,7 +25,7 @@ CONTRACT_TYPE
{
type = CelestialBody
uniquenessCheck = CONTRACT_ACTIVE
targetBody1 = OrbitedBodies().Where(b => !b.HaveLandedOn() && b.HasSurface()).SelectUnique()
targetBody1 = OrbitedBodies().Where(b => !b.HaveLandedOn() && b.HasSurface() && !b.IsHomeWorld()).SelectUnique()
title = Must have orbited a celestial body, but not landed on it.
}

Expand Down
35 changes: 35 additions & 0 deletions ExplorationPlus.version
@@ -0,0 +1,35 @@
{
"NAME" : "Contract Pack: Exploration Plus",
"URL" : "https://github.com/severedsolo/ExplorationPlus/blob/master/ExporationPlus.version",
"DOWNLOAD" : "https://github.com/severedsolo/ExplorationPlus/releases",
"GITHUB" :
{
"USERNAME" : "severedsolo",
"REPOSITORY" : "ExplorationPlus"
},
"VERSION" :
{
"MAJOR" : 2,
"MINOR" : 0,
"PATCH" : 1,
"BUILD" : 0
},
"KSP_VERSION" :
{
"MAJOR" : 1,
"MINOR" : 9,
"PATCH" : 1
},
"KSP_VERSION_MIN" :
{
"MAJOR" : 1,
"MINOR" : 9,
"PATCH" : 0
},
"KSP_VERSION_MAX" :
{
"MAJOR" : 1,
"MINOR" : 99,
"PATCH" : 99
}
}

0 comments on commit 4642cbd

Please sign in to comment.