Skip to content

Commit

Permalink
off by one err
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamsyntax committed Jan 2, 2024
1 parent 415244f commit ea3ee65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ShadowRando/Nukkoro2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ public Nukkoro2Player() { }

public Nukkoro2Player(int[] data)
{
Position = new Nukkoro2Vector(data[1], data[2], data[3]);
Rotation = new Nukkoro2Vector(data[4], data[5], data[6]);
Position = new Nukkoro2Vector(data[0], data[1], data[2]);
Rotation = new Nukkoro2Vector(data[3], data[4], data[5]);
}

public override string ToString() => $"{Position} {Rotation}";
Expand Down

0 comments on commit ea3ee65

Please sign in to comment.