From 35c783ecb19c15463a93f335b4289e9423f01e24 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Sun, 12 Oct 2025 17:21:02 -0700 Subject: [PATCH] Fix Plant Mutations (#40870) Whoops x2 Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../PlantAttributes/PlantAdjustHealthEntityEffectSystem.cs | 2 +- .../PlantAdjustMutationLevelEntityEffectSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustHealthEntityEffectSystem.cs b/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustHealthEntityEffectSystem.cs index 64f61f5b11..ab656b8aa4 100644 --- a/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustHealthEntityEffectSystem.cs +++ b/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustHealthEntityEffectSystem.cs @@ -14,7 +14,7 @@ public sealed partial class PlantAdjustHealthEntityEffectSystem : EntityEffectSy if (entity.Comp.Seed == null || entity.Comp.Dead) return; - entity.Comp.MutationLevel += args.Effect.Amount * entity.Comp.MutationMod; + entity.Comp.Health += args.Effect.Amount; _plantHolder.CheckHealth(entity, entity.Comp); } } diff --git a/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustMutationLevelEntityEffectSystem.cs b/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustMutationLevelEntityEffectSystem.cs index f35ff25b25..4732465098 100644 --- a/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustMutationLevelEntityEffectSystem.cs +++ b/Content.Server/EntityEffects/Effects/Botany/PlantAttributes/PlantAdjustMutationLevelEntityEffectSystem.cs @@ -14,7 +14,7 @@ public sealed partial class PlantAdjustMutationLevelEntityEffectSystem : EntityE if (entity.Comp.Seed == null || entity.Comp.Dead) return; - entity.Comp.Health += args.Effect.Amount; + entity.Comp.MutationLevel += args.Effect.Amount * entity.Comp.MutationMod; _plantHolder.CheckHealth(entity, entity.Comp); } } -- 2.51.2