Fixed: BlockDisplay should use BLOCK_STATE not INT

This commit is contained in:
Deko 2024-07-08 15:36:31 +02:00 committed by GitHub
parent 304606b2ed
commit b90f6850e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,7 @@ public class BlockDisplayMeta extends AbstractDisplayMeta {
} }
public void setBlockId(int blockId) { public void setBlockId(int blockId) {
super.metadata.setIndex(OFFSET, EntityDataTypes.INT, blockId); super.metadata.setIndex(OFFSET, EntityDataTypes.BLOCK_STATE, blockId);
} }
} }