diff --git a/Content.Server/Physics/Controllers/PullController.cs b/Content.Server/Physics/Controllers/PullController.cs index 341961acc8..fc93d4cf46 100644 --- a/Content.Server/Physics/Controllers/PullController.cs +++ b/Content.Server/Physics/Controllers/PullController.cs @@ -114,12 +114,6 @@ namespace Content.Server.Physics.Controllers physics.WakeBody(); var impulse = accel * physics.Mass * frameTime; physics.ApplyLinearImpulse(impulse); - - if (EntityManager.TryGetComponent(puller, out var pullerPhysics)) - { - pullerPhysics.WakeBody(); - pullerPhysics.ApplyLinearImpulse(-impulse); - } } } }