Skip to content

Commit

Permalink
crucial fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Aug 1, 2024
1 parent 9763958 commit 8f2ea82
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public void register() {
case 4 /* west */ -> yaw = 90F;
case 5 /* east */ -> yaw = 270;
}
wrapper.set(Types.BYTE, 0, (byte) (pitch * 256.0F / 360.0F));
wrapper.set(Types.BYTE, 1, (byte) (yaw * 256.0F / 360.0F));
wrapper.set(Types.BYTE, 0, (byte) (pitch * 256F / 360F));
wrapper.set(Types.BYTE, 1, (byte) (yaw * 256F / 360F));
});
handler(getSpawnTrackerWithDataHandler(EntityTypes1_17.FALLING_BLOCK));
}
Expand Down

0 comments on commit 8f2ea82

Please sign in to comment.