Fix default config-template value for caves

This commit is contained in:
Lukas Rieger (Blue) 2022-10-23 00:56:35 +02:00
parent ff100e2656
commit 8faa067634
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2

View File

@ -337,7 +337,7 @@ private ConfigTemplate createOverworldMapTemplate(String name, Path worldFolder)
.setVariable("sky-color", "#7dabff") .setVariable("sky-color", "#7dabff")
.setVariable("ambient-light", "0.1") .setVariable("ambient-light", "0.1")
.setVariable("world-sky-light", "15") .setVariable("world-sky-light", "15")
.setVariable("remove-caves-below-y", "-2") .setVariable("remove-caves-below-y", "55")
.setConditional("max-y-comment", true) .setConditional("max-y-comment", true)
.setVariable("max-y", "100"); .setVariable("max-y", "100");
} }