From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Mon, 13 Oct 2025 00:21:02 +0000 (-0700) Subject: Fix Plant Mutations (#40870) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=35c783ecb19c15463a93f335b4289e9423f01e24;p=space-station-14.git Fix Plant Mutations (#40870) Whoops x2 Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- 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); } }