From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 20 Feb 2025 11:19:26 +0000 (+1100) Subject: Fix missing errorOnMissing arg being passed thru (#35328) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=5e0a1d8581fda1d6c10bfe4a1e26066b538dd965;p=space-station-14.git Fix missing errorOnMissing arg being passed thru (#35328) --- 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;