Skip to content

Commit

Permalink
Fix Clouds being visible in the Spatial Storage Dimension
Browse files Browse the repository at this point in the history
(cherry picked from commit db8f155)
  • Loading branch information
shartte committed Jan 7, 2024
1 parent fbda509 commit 5465f55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/appeng/spatial/SpatialStorageSkyProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@

package appeng.spatial;

import com.mojang.blaze3d.vertex.PoseStack;

import javax.annotation.Nullable;

import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.math.Matrix4f;

import net.minecraft.client.Camera;
import net.minecraft.client.multiplayer.ClientLevel;
import net.minecraft.client.renderer.DimensionSpecialEffects;
Expand Down Expand Up @@ -62,7 +62,7 @@ public float[] getSunriseColor(float timeOfDay, float partialTicks) {

@Override
public boolean renderSky(ClientLevel level, int ticks, float partialTick, PoseStack poseStack, Camera camera,
Matrix4f projectionMatrix, boolean isFoggy, Runnable setupFog) {
Matrix4f projectionMatrix, boolean isFoggy, Runnable setupFog) {
SpatialSkyRender.getInstance().render(poseStack, projectionMatrix);
return true;
}
Expand Down

0 comments on commit 5465f55

Please sign in to comment.