From 5b394c2f5a14f6a0aab4f4e7c52288b2bf59c80c Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Wed, 12 Feb 2025 03:37:39 +0300 Subject: [PATCH] Fix energy katana resolve error (#35082) --- Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs index d738f2dd8a..e17e2bc893 100644 --- a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs @@ -63,7 +63,7 @@ public abstract class SharedSpaceNinjaSystem : EntitySystem /// public void BindKatana(Entity ent, EntityUid katana) { - if (!NinjaQuery.Resolve(ent, ref ent.Comp) || ent.Comp.Katana != null) + if (!NinjaQuery.Resolve(ent, ref ent.Comp, false) || ent.Comp.Katana != null) return; ent.Comp.Katana = katana; -- 2.51.2