Skip to content

Commit

Permalink
Unswap blue/green in modifyColors
Browse files Browse the repository at this point in the history
  • Loading branch information
AMereBagatelle committed May 17, 2024
1 parent e8937f8 commit dff1a63
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ private static void modifyColors(Camera camera, float tickDelta, ClientLevel wor
FogRGBA fogColor = Utils.alphaBlendFogColors(SkyboxManager.getInstance().getActiveSkyboxes(), new RGBA(fogRed, fogBlue, fogGreen));
if (SkyboxManager.getInstance().isEnabled() && fogColor != null) {
fogRed = fogColor.getRed();
fogBlue = fogColor.getGreen();
fogGreen = fogColor.getBlue();
fogBlue = fogColor.getBlue();
fogGreen = fogColor.getGreen();
nuit$density = fogColor.getDensity();
nuit$modifyDensity = fogColor.isModifyDensity();
} else {
Expand Down

0 comments on commit dff1a63

Please sign in to comment.