Revert pulling newtons third law stuff (#6813)

This commit is contained in:
mirrorcult
2022-02-19 23:17:49 -07:00
committed by GitHub
parent 34c96439f6
commit 4967cb98f6

View File

@@ -114,12 +114,6 @@ namespace Content.Server.Physics.Controllers
physics.WakeBody();
var impulse = accel * physics.Mass * frameTime;
physics.ApplyLinearImpulse(impulse);
if (EntityManager.TryGetComponent<PhysicsComponent?>(puller, out var pullerPhysics))
{
pullerPhysics.WakeBody();
pullerPhysics.ApplyLinearImpulse(-impulse);
}
}
}
}