From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Fri, 26 Jan 2024 17:50:50 +0000 (+0000) Subject: Reset LastProduce after plant removal (#24590) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=9a7b8be428030d537b99c3b05c2f093708ac6888;p=space-station-14.git Reset LastProduce after plant removal (#24590) --- diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 1484051c84..6bf0b9692c 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -766,6 +766,7 @@ public sealed class PlantHolderSystem : EntitySystem component.Seed = null; component.Dead = false; component.Age = 0; + component.LastProduce = 0; component.Sampled = false; component.Harvest = false; component.ImproperLight = false;