Skip to content

Commit

Permalink
Revert "Reenable kudzu." (#20843)
Browse files Browse the repository at this point in the history
  • Loading branch information
misandrie authored Oct 9, 2023
1 parent 6c0efe6 commit a62b9ea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
7 changes: 4 additions & 3 deletions Content.Server/Botany/Systems/MutationSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void MutateSeed(ref SeedData seed, float severity)
}

// Add up everything in the bits column and put the number here.
const int totalbits = 270;
const int totalbits = 265;

// Tolerances (55)
MutateFloat(ref seed.NutrientConsumption , 0.05f, 1.2f, 5, totalbits, severity);
Expand Down Expand Up @@ -69,7 +69,8 @@ public void MutateSeed(ref SeedData seed, float severity)
MutateBool(ref seed.Sentient , true , 10, totalbits, severity);
MutateBool(ref seed.Ligneous , true , 10, totalbits, severity);
MutateBool(ref seed.Bioluminescent, true , 10, totalbits, severity);
MutateBool(ref seed.TurnIntoKudzu , true , 10, totalbits, severity);
// Kudzu disabled until superkudzu bug is fixed
// MutateBool(ref seed.TurnIntoKudzu , true , 10, totalbits, severity);
MutateBool(ref seed.CanScream , true , 10, totalbits, severity);
seed.BioluminescentColor = RandomColor(seed.BioluminescentColor, 10, totalbits, severity);

Expand Down Expand Up @@ -118,7 +119,7 @@ public SeedData Cross(SeedData a, SeedData b)
CrossBool(ref result.Sentient, a.Sentient);
CrossBool(ref result.Ligneous, a.Ligneous);
CrossBool(ref result.Bioluminescent, a.Bioluminescent);
CrossBool(ref result.TurnIntoKudzu, a.TurnIntoKudzu);
// CrossBool(ref result.TurnIntoKudzu, a.TurnIntoKudzu);
CrossBool(ref result.CanScream, a.CanScream);

CrossGasses(ref result.ExudeGasses, a.ExudeGasses);
Expand Down
24 changes: 12 additions & 12 deletions Resources/Prototypes/GameRules/events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,18 @@
startDelay: 20
- type: GasLeakRule

- type: entity
id: KudzuGrowth
parent: BaseGameRule
noSpawn: true
components:
- type: StationEvent
earliestStart: 15
minimumPlayers: 15
weight: 5
startDelay: 50
duration: 240
- type: KudzuGrowthRule
#- type: entity
# id: KudzuGrowth
# parent: BaseGameRule
# noSpawn: true
# components:
# - type: StationEvent
# earliestStart: 15
# minimumPlayers: 15
# weight: 5
# startDelay: 50
# duration: 240
# - type: KudzuGrowthRule

- type: entity
id: MeteorSwarm
Expand Down

0 comments on commit a62b9ea

Please sign in to comment.