From 09bd8282dcd853f4b0cca4fe8b1f4fa9d06668b4 Mon Sep 17 00:00:00 2001 From: Lenny Lord <32369619+thelennylord@users.noreply.github.com> Date: Thu, 20 Nov 2025 01:18:36 +0530 Subject: [PATCH] Rotation now always requires yaw and pitch --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index 33683d4..8ee8dd9 100644 --- a/js/main.js +++ b/js/main.js @@ -596,7 +596,7 @@ function generateCode() { Small: small || null, Marker: marker || null, - Rotation: (rotation != 0) ? [ new NBTFloat(rotation) ] : null, + Rotation: (rotation != 0) ? [ new NBTFloat(rotation), new NBTFloat(0) ] : null, CustomNameVisible: showCustomName || null, CustomName: (customName) ? generateCustomName() : null,