Skip to content

Commit

Permalink
fix reversed order in GetStartConstraintDistance
Browse files Browse the repository at this point in the history
  • Loading branch information
gmriggs committed May 19, 2021
1 parent dd3f8f5 commit 27c68e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ACE.Server/Physics/PhysicsObj.cs
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ public uint GetSetupID()

public float GetStartConstraintDistance()
{
return (Position.ObjCellID & 0xFFFF) < 0x100 ? 5.0f : 10.0f;
return (Position.ObjCellID & 0xFFFF) < 0x100 ? 10.0f : 5.0f;
}

public float GetStepDownHeight()
Expand Down

0 comments on commit 27c68e8

Please sign in to comment.