]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix missing errorOnMissing arg being passed thru (#35328)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Thu, 20 Feb 2025 11:19:26 +0000 (22:19 +1100)
committerGitHub <noreply@github.com>
Thu, 20 Feb 2025 11:19:26 +0000 (12:19 +0100)
Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs

index 9e5e24b3e48f735b0f029f36eb1ddc61b0ea5549..99d1459340c476518d16579d04bc221965319796 100644 (file)
@@ -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;