Make pulling feel less crap (#4414)
Something something pulling refactor someday
This commit is contained in:
parent
5036779929
commit
c453bb07c5
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue