Forgot to turn down default noise intensity

This commit is contained in:
coolGi
2023-06-20 00:03:53 +09:30
parent 40225cb13f
commit 71f8bccb7d
@@ -462,7 +462,7 @@ public class Config
.build();
public static ConfigEntry<Double> noiseIntensity = new ConfigEntry.Builder<Double>() // TODO: Make this a float (the ClassicConfigGUI doesn't support floats)
.setMinDefaultMax(0d, 10d, 100d) // TODO: Once this becomes a float make it 0-1 instead of 0-100 (I did this cus doubles only allow 2 decimal places)
.setMinDefaultMax(0d, 5d, 100d) // TODO: Once this becomes a float make it 0-1 instead of 0-100 (I did this cus doubles only allow 2 decimal places)
.comment(""
+ "How intense should the noise should be?")
.build();