From 5e0a1d8581fda1d6c10bfe4a1e26066b538dd965 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 20 Feb 2025 22:19:26 +1100 Subject: [PATCH] Fix missing errorOnMissing arg being passed thru (#35328) --- .../Chemistry/EntitySystems/SharedSolutionContainerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index 9e5e24b3e4..99d1459340 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -145,7 +145,7 @@ public abstract partial class SharedSolutionContainerSystem : EntitySystem [NotNullWhen(true)] out Solution? solution, bool errorOnMissing = false) { - if (!TryGetSolution(container, name, out entity)) + if (!TryGetSolution(container, name, out entity, errorOnMissing: errorOnMissing)) { solution = null; return false; -- 2.51.2