Skip to content

Commit

Permalink
Merge pull request #43 from blurite/npc-facecoord-fix
Browse files Browse the repository at this point in the history
fix: correct npc facecoord decoding
  • Loading branch information
Z-Kris authored Dec 23, 2024
2 parents 4393c59 + 202d4b5 commit 2995964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ internal class NpcInfoClient(
) {
val x = buffer.g2Alt1()
val z = buffer.g2Alt2()
val instant = buffer.g1Alt1() == 1
val instant = buffer.g1Alt2() == 1
blocks += FaceCoordExtendedInfo(x, z, instant)
}

Expand Down

0 comments on commit 2995964

Please sign in to comment.