]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Disable kuzdu pending growth rate fix (#20200)
author612 <125925684+612git@users.noreply.github.com>
Fri, 15 Sep 2023 17:16:03 +0000 (10:16 -0700)
committerGitHub <noreply@github.com>
Fri, 15 Sep 2023 17:16:03 +0000 (09:16 -0800)
Content.Server/Botany/Systems/MutationSystem.cs
Resources/Prototypes/GameRules/events.yml

index 8e714b648565ccc3382e5dcb27b9544acbc645aa..1a63693a335a669f931461ed5bcc2d0faf3fd1d3 100644 (file)
@@ -36,7 +36,7 @@ public sealed class MutationSystem : EntitySystem
         }
 
         // 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);
@@ -68,7 +68,8 @@ public sealed class MutationSystem : EntitySystem
         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  , 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);
         seed.BioluminescentColor = RandomColor(seed.BioluminescentColor, 10, totalbits, severity);
         // ConstantUpgade (10)
@@ -116,7 +117,7 @@ public sealed class MutationSystem : EntitySystem
         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);
         CrossGasses(ref result.ConsumeGasses, a.ConsumeGasses);
index 9eb5d9f4fcbbf9e191d4bb5202e2b9bd001783c6..550163bb7d86b9a9401de705763ec396db05c3be 100644 (file)
     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