Compatibility
Minecraft: Java Edition
1.21.1
Platforms
Supported environments
Client and server
Tags
Creators
Details
Licensed ARR
Published 18 hours ago
Create Display Link Void Fix
Fixes a bug in Create v6.0.10 where the Display Link always shows "Void Air" in its GUI. The Mixin patches DisplayLinkBlockEntity.getTargetPosition() to return the correct block position instead of BlockPos.ZERO.
For normal users
This mod must be installed on both server and client. Drop the JAR into the mods/ folder on both sides. That is all.
For developers
The root cause is that DisplayLinkBlockEntity.getTargetPosition() returns BlockPos.ZERO despite worldPosition and targetOffset being correct. The Mixin replaces the method body with getBlockPos().offset(targetOffset). The mod is required on both sides because it patches a shared class.
Before

After



