From 9828f165b45d86d0a1bdb96781753b641866ee4e Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Thu, 2 Oct 2025 09:17:31 +1300 Subject: [PATCH] Increase puddle spillover volume to 50u (#38044) * increase puddle spillover volume * sleepy; 50u volume --- Content.Shared/Fluids/Components/PuddleComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Fluids/Components/PuddleComponent.cs b/Content.Shared/Fluids/Components/PuddleComponent.cs index 105206fece..2138d04149 100644 --- a/Content.Shared/Fluids/Components/PuddleComponent.cs +++ b/Content.Shared/Fluids/Components/PuddleComponent.cs @@ -15,7 +15,7 @@ namespace Content.Shared.Fluids.Components public SoundSpecifier SpillSound = new SoundPathSpecifier("/Audio/Effects/Fluids/splat.ogg"); [DataField] - public FixedPoint2 OverflowVolume = FixedPoint2.New(20); + public FixedPoint2 OverflowVolume = FixedPoint2.New(50); [DataField("solution")] public string SolutionName = "puddle";