Skip to content

Commit a181b55

Browse files
committed
ngl don't knoww if this is gonna work but hopefully better to add RP here anyways
1 parent 56164e4 commit a181b55

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ jobs:
3535
prerelease: false
3636
files: |
3737
build/libs/GeyserDisplayEntity*.jar
38+
pack/GeyserDisplayEntity.mcpack
39.5 KB
Binary file not shown.

src/main/java/me/zimzaza4/geyserdisplayentity/GeyserDisplayEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import java.util.ArrayList;
2727
import java.util.List;
2828

29+
// From Kastle's Geyser branch
2930
public class GeyserDisplayEntity implements Extension {
3031

3132
private static GeyserDisplayEntity extension;
@@ -38,7 +39,6 @@ public class GeyserDisplayEntity implements Extension {
3839
public static final Integer MAX_VALUE = 1000000;
3940
public static final Integer MIN_VALUE = -1000000;
4041

41-
// From Kastle's Geyser branch
4242
@Subscribe
4343
public void onLoad(GeyserPostInitializeEvent event) {
4444
extension = this;

src/main/java/me/zimzaza4/geyserdisplayentity/entity/SlotDisplayEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void initializeMetadata() {
5555
item = ItemData.AIR;
5656
translation = Vector3f.from(0, 0, 0);
5757
scale = Vector3f.from(1, 1, 1);
58-
rotation = Vector3f.from(-180, 0, -180); // was 0, 0, 0 before - keeping note 2nd attempt
58+
rotation = Vector3f.from(0, 0, 0);
5959
qScale = 1F;
6060
validQScale = false;
6161
rotationUpdated = false;

0 commit comments

Comments
 (0)