From 349a3169a9736f20b132a4b3d04c6c66bd61245f Mon Sep 17 00:00:00 2001 From: Moritz Zwerger Date: Sun, 8 Oct 2023 18:16:41 +0200 Subject: [PATCH] nether: add ambient light --- _/dimensions.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/_/dimensions.json b/_/dimensions.json index 15c19e7..a6b58fc 100644 --- a/_/dimensions.json +++ b/_/dimensions.json @@ -1,14 +1,17 @@ { "minecraft:overworld": { "id": 0, - "has_sky_light": true + "has_sky_light": true, + "ambient_light": 0.0, }, "minecraft:the_nether": { "id": -1, - "has_sky_light": false + "has_sky_light": false, + "ambient_light": 0.1, }, "minecraft:the_end": { "id": 1, - "has_sky_light": false + "has_sky_light": false, + "ambient_light": 0.0, } }