Disable kuzdu pending growth rate fix (#20200)

This commit is contained in:
612
2023-09-15 10:16:03 -07:00
committed by GitHub
parent ce4ee085d7
commit 236a97d190
2 changed files with 16 additions and 15 deletions

View File

@@ -36,7 +36,7 @@ public sealed class MutationSystem : EntitySystem
} }
// Add up everything in the bits column and put the number here. // Add up everything in the bits column and put the number here.
const int totalbits = 270; const int totalbits = 265;
// Tolerances (55) // Tolerances (55)
MutateFloat(ref seed.NutrientConsumption , 0.05f , 1.2f , 5 , totalbits , severity); MutateFloat(ref seed.NutrientConsumption , 0.05f , 1.2f , 5 , totalbits , severity);
@@ -68,7 +68,8 @@ public sealed class MutationSystem : EntitySystem
MutateBool(ref seed.Sentient , true , 10 , totalbits , severity); MutateBool(ref seed.Sentient , true , 10 , totalbits , severity);
MutateBool(ref seed.Ligneous , true , 10 , totalbits , severity); MutateBool(ref seed.Ligneous , true , 10 , totalbits , severity);
MutateBool(ref seed.Bioluminescent , true , 10 , totalbits , severity); MutateBool(ref seed.Bioluminescent , true , 10 , totalbits , severity);
MutateBool(ref seed.TurnIntoKudzu , true , 5 , totalbits , severity); // Kudzu disabled until superkudzu bug is fixed
// MutateBool(ref seed.TurnIntoKudzu , true , 5 , totalbits , severity);
MutateBool(ref seed.CanScream , true , 10 , totalbits , severity); MutateBool(ref seed.CanScream , true , 10 , totalbits , severity);
seed.BioluminescentColor = RandomColor(seed.BioluminescentColor, 10, totalbits, severity); seed.BioluminescentColor = RandomColor(seed.BioluminescentColor, 10, totalbits, severity);
// ConstantUpgade (10) // ConstantUpgade (10)
@@ -116,7 +117,7 @@ public sealed class MutationSystem : EntitySystem
CrossBool(ref result.Sentient, a.Sentient); CrossBool(ref result.Sentient, a.Sentient);
CrossBool(ref result.Ligneous, a.Ligneous); CrossBool(ref result.Ligneous, a.Ligneous);
CrossBool(ref result.Bioluminescent, a.Bioluminescent); CrossBool(ref result.Bioluminescent, a.Bioluminescent);
CrossBool(ref result.TurnIntoKudzu, a.TurnIntoKudzu); // CrossBool(ref result.TurnIntoKudzu, a.TurnIntoKudzu);
CrossBool(ref result.CanScream, a.CanScream); CrossBool(ref result.CanScream, a.CanScream);
CrossGasses(ref result.ExudeGasses, a.ExudeGasses); CrossGasses(ref result.ExudeGasses, a.ExudeGasses);
CrossGasses(ref result.ConsumeGasses, a.ConsumeGasses); CrossGasses(ref result.ConsumeGasses, a.ConsumeGasses);

View File

@@ -120,18 +120,18 @@
startDelay: 20 startDelay: 20
- type: GasLeakRule - type: GasLeakRule
- type: entity #- type: entity
id: KudzuGrowth # id: KudzuGrowth
parent: BaseGameRule # parent: BaseGameRule
noSpawn: true # noSpawn: true
components: # components:
- type: StationEvent # - type: StationEvent
earliestStart: 15 # earliestStart: 15
minimumPlayers: 15 # minimumPlayers: 15
weight: 5 # weight: 5
startDelay: 50 # startDelay: 50
duration: 240 # duration: 240
- type: KudzuGrowthRule # - type: KudzuGrowthRule
- type: entity - type: entity
id: MeteorSwarm id: MeteorSwarm