Skip to content

Commit

Permalink
Fix clouds not being translucent
Browse files Browse the repository at this point in the history
This fixes #2842.
  • Loading branch information
IMS212 committed Oct 26, 2024
1 parent 9eba941 commit 16a2895
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void render(Camera camera,
RenderSystem.disableCull();
}

RenderSystem.setShaderColor(ARGB.from8BitChannel(ARGB.red(color)), ARGB.from8BitChannel(ARGB.green(color)), ARGB.from8BitChannel(ARGB.blue(color)), 1.0F);
RenderSystem.setShaderColor(ARGB.from8BitChannel(ARGB.red(color)), ARGB.from8BitChannel(ARGB.green(color)), ARGB.from8BitChannel(ARGB.blue(color)), 0.8F);

vertexBuffer.bind();

Expand Down

0 comments on commit 16a2895

Please sign in to comment.