Forgot to turn down default noise intensity
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user