From b45d121c24f040d6c5b8cfa67d2745ea8692e802 Mon Sep 17 00:00:00 2001 From: metalgearsloth Date: Tue, 21 Sep 2021 00:13:03 +1000 Subject: [PATCH] Fix puller empty statement --- Content.Shared/Pulling/Systems/SharedPullerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Pulling/Systems/SharedPullerSystem.cs b/Content.Shared/Pulling/Systems/SharedPullerSystem.cs index 172a9102ea..7f2ed7262c 100644 --- a/Content.Shared/Pulling/Systems/SharedPullerSystem.cs +++ b/Content.Shared/Pulling/Systems/SharedPullerSystem.cs @@ -24,7 +24,7 @@ namespace Content.Shared.Pulling.Systems if (component.Pulling == null) return; - if (component.Pulling == EntityManager.GetEntity(args.BlockingEntity)); + if (component.Pulling == EntityManager.GetEntity(args.BlockingEntity)) { if (ComponentManager.TryGetComponent(args.BlockingEntity, out var comp)) {