nether: add ambient light

This commit is contained in:
Moritz Zwerger 2023-10-08 18:16:41 +02:00
parent 1494284992
commit 349a3169a9
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

View File

@ -1,14 +1,17 @@
{ {
"minecraft:overworld": { "minecraft:overworld": {
"id": 0, "id": 0,
"has_sky_light": true "has_sky_light": true,
"ambient_light": 0.0,
}, },
"minecraft:the_nether": { "minecraft:the_nether": {
"id": -1, "id": -1,
"has_sky_light": false "has_sky_light": false,
"ambient_light": 0.1,
}, },
"minecraft:the_end": { "minecraft:the_end": {
"id": 1, "id": 1,
"has_sky_light": false "has_sky_light": false,
"ambient_light": 0.0,
} }
} }