Skip to content

Commit

Permalink
Fixes bad increment
Browse files Browse the repository at this point in the history
  • Loading branch information
kamronbatman committed Jul 5, 2024
1 parent 4ca72f3 commit e18fc57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Projects/Server/Mobiles/Movement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ public static void Offset(Direction d, ref int x, ref int y, int count = 1)
case Direction.Right:
{
x += count;
y += count;
y -= count;
break;
}
case Direction.Left:
{
x -= count;
y -= count;
y += count;
break;
}
case Direction.Down:
Expand Down

0 comments on commit e18fc57

Please sign in to comment.