Skip to content

Commit

Permalink
Merge pull request #1550 from tjdeckard/main
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
tjdeckard authored Oct 24, 2021
2 parents f3fa1ab + 5d7a8dd commit 8e14348
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@
@TechRequired = colonization
}

@PART[ATLAS_Harvester_sm*]:NEEDS[CommunityTechTree]
@PART[ATLAS_Harvester_Sm*]:NEEDS[CommunityTechTree]
{
@TechRequired = colonization
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@

@PART[WOLF_Transporter]:NEEDS[CommunityTechTree]
{
@TechRequired = advlogistics
@TechRequired = advLogistics
}

@PART[WOLF_TransportModule375]:NEEDS[CommunityTechTree]
Expand Down
2 changes: 1 addition & 1 deletion FOR_RELEASE/GameData/UmbraSpaceIndustries/WOLF/WOLF.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ WOLF_CONFIGURATION
AllowedHarvestableResources = Dirt,ExoticMinerals,Gypsum,Hydrates,MetallicOre,Minerals,Ore,Oxygen,RareMetals,Silicates,Substrate,Water,XenonGas
BlacklistedHomeworldResources = ExoticMinerals,RareMetals
RefinedResourcesFilter = Chemicals,Fertilizer,Fuel,Metals,Polymers,Power,RefinedExotics,Silicon
AssembledResourcesFilter = Machinery,Maintenance,MaterialKits,Power,SpecializedParts,TransportCredits
AssembledResourcesFilter = Alloys,Electronics,Machinery,Maintenance,MaterialKits,Power,Prototypes,Robotics,SpecializedParts,Synthetics,TransportCredits
LifeSupportResourcesFilter = CarbonDioxide,ColonySupplies,Food,Habitation,Lab,LifeSupport,Mulch,Oxygen,Power,WasteWater,Water
}
7 changes: 6 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ pipeline {
}
// Determine build & publish flags for branch
stage("Setup bleeding edge environment") {
when { branch "main" }
when {
anyOf {
branch "main"
tag "*-bleeding-edge-*"
}
}
steps {
script {
env.ARTIFACT_CACHES = "bleeding-edge"
Expand Down
3 changes: 2 additions & 1 deletion Source/WOLF/WOLF/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public class Configuration

public static readonly List<string> DefaultAssembledResources = new List<string>
{
"Machinery", "Maintenance", "MaterialKits", "SpecializedParts", "TransportCredits"
"Alloys", "Electronics", "Machinery", "Maintenance", "MaterialKits",
"Prototypes", "Robotics", "SpecializedParts", "Synthetics", "TransportCredits"
};

public static readonly List<string> DefaultLifeSupportResources = new List<string>
Expand Down

0 comments on commit 8e14348

Please sign in to comment.