Skip to content

Acceleration is zero if character is non locally controlled. #493

@Anma-wp

Description

@Anma-wp

Acceleration is zero if character is non locally controlled.
ALSBaseCharacter.cpp line 973.
Acceleration = NewAcceleration.IsNearlyZero() || IsLocallyControlled() ? NewAcceleration : Acceleration / 2;
I think it should be:
Acceleration = NewAcceleration.IsNearlyZero() || IsLocallyControlled() ? NewAcceleration : NewAcceleration / 2;

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions