forgot some defaults

This commit is contained in:
GiantLuigi4 2023-06-02 15:21:55 -04:00
parent 116f7290d0
commit bb7b3a9034
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ public class ClientConfig {
@Comment("How far (in blocks) you can be before a screen starts rendering")
@Translation("config.webdisplays.load_distance")
@DoubleRange(minV = 0, maxV = Double.MAX_VALUE)
@Default(valueD = 32)
@Default(valueD = 30)
public static double loadDistance = 30.0;
@Name("unload_distance")

View File

@ -62,7 +62,7 @@ public class CommonConfig {
@Comment("The maximum value screen's vertical resolution, in pixels")
@Translation("config.webdisplays.max_res_y")
@IntRange(minV = 0, maxV = Integer.MAX_VALUE)
@Default(valueI = 1920)
@Default(valueI = 1080)
public static int maxResolutionY = 1080;
@Name("max_width")