Skip to content

Commit

Permalink
Attempt to disable blend if no override is used
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Sep 27, 2023
1 parent 2a652bc commit 94e48ee
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,8 @@ public void renderAll() {
renderPass.program.use();
if (renderPass.blendModeOverride != null) {
renderPass.blendModeOverride.apply();
} else {
RenderSystem.disableBlend();
}

// program is the identifier for composite :shrug:
Expand Down

0 comments on commit 94e48ee

Please sign in to comment.