Make pulling feel less crap (#4414)

Something something pulling refactor someday
This commit is contained in:
metalgearsloth
2021-08-04 01:02:43 +10:00
committed by GitHub
parent 5036779929
commit c453bb07c5

View File

@@ -21,6 +21,12 @@ namespace Content.Client.Physics.Controllers
body.Predict = true; // TODO: equal prediction instead of true?
foreach (var joint in body.Joints)
{
joint.BodyA.Predict = true;
joint.BodyB.Predict = true;
}
// Server-side should just be handled on its own so we'll just do this shizznit
if (player.TryGetComponent(out IMobMoverComponent? mobMover))
{