Skip to content

Commit

Permalink
Fixed Sky Stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
LudoCrypt committed May 13, 2022
1 parent 65e5745 commit 352f14b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ loader_version=0.13.3
fabric_version=0.47.10+1.18.2
satin_version=1.7.2

mod_version = 5.1.2
mod_version = 5.1.3
maven_group = net.ludocrypt
archives_base_name = limlib
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ public DimensionEffects getDimensionEffects() {
if (this.dimensionEffects == null) {
this.dimensionEffects = new DimensionEffects(cloudsHeight.orElse(Float.NaN), alternateSkyColor, SkyType.valueOf(skyType), brightenLighting, darkened) {

@Override
public float[] getFogColorOverride(float skyAngle, float tickDelta) {
return null;
}

@Override
public Vec3d adjustFogColor(Vec3d color, float angle) {
return color;
Expand Down

0 comments on commit 352f14b

Please sign in to comment.