fix the sky in the nether caverns when using climate_api (#61)

The mantle and geode skys were working correctly, but not the sky in the main nether area - it would always switch back to stars.
Issue was found by process of elimination, so I don't know why climate_api doesn't accept "nether:nether" as a unique weather name identifier, or how this issue wasn't noticed earlier (did something change?).

climate_api's api_doc.md file says the name "should be prefixed with the mod's name in a way that could look like ``mymod:awesome_weather``. This name should only be used once."

so perhaps names of the form "mymod:mymod" cause issues? (I don't plan on figuring this climate_api behavior out though)
This commit is contained in:
Treer 2022-11-20 01:05:03 +11:00 committed by GitHub
parent a8a6bb00c5
commit 7dc32f6bb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ The expedition parties have found no diamonds or gold, and after an experienced
geodeSky.sky_data.base_color = nether.fogColor.geodes
climate_api.register_weather(
"nether:nether",
"nether:caverns",
{ nether_biome = "nether" },
{ ["climate_api:skybox"] = netherSky }
)