From 4967cb98f6a1afc139d592e3dd93c88165969a80 Mon Sep 17 00:00:00 2001 From: mirrorcult Date: Sat, 19 Feb 2022 23:17:49 -0700 Subject: [PATCH] Revert pulling newtons third law stuff (#6813) --- Content.Server/Physics/Controllers/PullController.cs | 6 ------ 1 file changed, 6 deletions(-) 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); - } } } }