Fix missing errorOnMissing arg being passed thru (#35328)

This commit is contained in:
metalgearsloth
2025-02-20 22:19:26 +11:00
committed by GitHub
parent 3ce81d35be
commit 5e0a1d8581

View 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;