From: Flesh <62557990+PolterTzi@users.noreply.github.com> Date: Sat, 17 Feb 2024 17:08:59 +0000 (+0100) Subject: fixed the specific if statement called when plant age is under 0 (#25346) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=5b485fedbd6f41ffb82343f1f6cbb7113ce6284f;p=space-station-14.git fixed the specific if statement called when plant age is under 0 (#25346) --- diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 86f7be6d7b..0f54fd0da5 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -621,6 +621,7 @@ public sealed class PlantHolderSystem : EntitySystem RemovePlant(uid, component); component.ForceUpdate = true; Update(uid, component); + return; } CheckHealth(uid, component);