Fixed chest with data 0 being invisible for 1.8+

This commit is contained in:
RaphiMC 2023-06-16 16:50:36 +02:00
parent 356f658810
commit b2b895879b
No known key found for this signature in database
GPG Key ID: 0F6BB0657A03AC94

View File

@ -34,6 +34,7 @@ public class ChunkTracker extends AbstractChunkTracker {
for (int i = 1; i < 16; i++) { // air
this.registerReplacement(new IdAndData(0, i), new IdAndData(0, 0));
}
this.registerReplacement(new IdAndData(BlockList1_6.chest.blockID, 0), new IdAndData(BlockList1_6.chest.blockID, 3));
}
@Override