From c92c52fded008aec0d34a4cc4285c629074caa7a Mon Sep 17 00:00:00 2001 From: Zachary Higgs Date: Wed, 15 Jan 2025 17:21:20 -0400 Subject: [PATCH] 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 --- Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs | 2 ++ 1 file changed, 2 insertions(+) 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); } } } -- 2.51.2