From: Zachary Higgs Date: Wed, 15 Jan 2025 21:21:20 +0000 (-0400) Subject: Fix Mixed puddles not updating slips when evap (#34303) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=c92c52fded008aec0d34a4cc4285c629074caa7a;p=space-station-14.git Fix Mixed puddles not updating slips when evap (#34303) * Fix Mixed puddles not updating slips when evap * Remove Comment that isn't needed Co-authored-by: Centronias * CR - use SolutionContainerSystem.UpdateChemicals * CR - cleanup unused imports --------- Co-authored-by: Centronias --- diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs index d9605c775c..d78950b1d5 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs @@ -55,6 +55,8 @@ public sealed partial class PuddleSystem Spawn("PuddleSparkle", xformQuery.GetComponent(uid).Coordinates); QueueDel(uid); } + + _solutionContainerSystem.UpdateChemicals(puddle.Solution.Value); } } }