Skip to content

Commit 27c68e8

Browse files
committed
fix reversed order in GetStartConstraintDistance
1 parent dd3f8f5 commit 27c68e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/ACE.Server/Physics/PhysicsObj.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ public uint GetSetupID()
619619

620620
public float GetStartConstraintDistance()
621621
{
622-
return (Position.ObjCellID & 0xFFFF) < 0x100 ? 5.0f : 10.0f;
622+
return (Position.ObjCellID & 0xFFFF) < 0x100 ? 10.0f : 5.0f;
623623
}
624624

625625
public float GetStepDownHeight()

0 commit comments

Comments
 (0)