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); } }