diff --git a/src/js/net/minecraft/client/render/BlockRenderer.js b/src/js/net/minecraft/client/render/BlockRenderer.js index c3edea5..696101d 100644 --- a/src/js/net/minecraft/client/render/BlockRenderer.js +++ b/src/js/net/minecraft/client/render/BlockRenderer.js @@ -68,8 +68,8 @@ export default class BlockRenderer { this.tessellator.setColor(color, color, color); } - // Set opacity of block - this.tessellator.setAlpha(1 - block.getTransparency()); + // Set opacity of block (Using alpha channel in texture right now) + // this.tessellator.setAlpha(1 - block.getTransparency()); // Add face to tessellator this.addFace(world, face, ambientOcclusion, minX, minY, minZ, maxX, maxY, maxZ, minU, minV, maxU, maxV); diff --git a/src/resources/terrain/terrain.png b/src/resources/terrain/terrain.png index 7b770f4..91c9555 100644 Binary files a/src/resources/terrain/terrain.png and b/src/resources/terrain/terrain.png differ