Skip to content

Commit

Permalink
Fix config crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Dec 12, 2024
1 parent 1cbe4c7 commit 33c36c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/tamaized/voidfog/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Settings extends Config {
.addComment("Default: 32")
.addComment("Maximum height in blocks from the bottom of the world that fog will reach.")
.addComment("If scaleWithDifficulty is enabled, this value is MULTIPLIED by the current area's difficulty");
public final Setting<Float> fogTransitionDistance = value("maxFogHeight", 15F)
public final Setting<Float> fogTransitionDistance = value("fogTransitionDistance", 15F)
.addComment("Default: 15")
.addComment("Distance in blocks that you have to approach to the border defined by maxFogHeight for the game to start transitioning from regular to void fog");
public final Setting<Boolean> imABigBoi = value("imABigBoi", false)
Expand Down

0 comments on commit 33c36c7

Please sign in to comment.