diff --git a/Content.Client/Physics/Controllers/MoverController.cs b/Content.Client/Physics/Controllers/MoverController.cs index 01441b98d8..c93c142da3 100644 --- a/Content.Client/Physics/Controllers/MoverController.cs +++ b/Content.Client/Physics/Controllers/MoverController.cs @@ -54,6 +54,12 @@ namespace Content.Client.Physics.Controllers { pullerBody.Predict = false; body.Predict = false; + + if (TryComp(player, out var playerPuller) && playerPuller.Pulling != null && + TryComp(playerPuller.Pulling, out var pulledBody)) + { + pulledBody.Predict = false; + } } }