Making any changes to biomes_client.json breaks the end sky.
How to reproduce:
Use a resource pack that changes biomes_client.json
Go to the end
Look at the sky
What I expected:
The end sky will render normal
What I saw:
The end sky lost it's color map and is bright without night vision
Attachments
Comments 4
The End sky appears bright because the End biome does not have a fog identifier.
To fix the issue, change:
"the_end": {
"water_surface_color": "#62529e",
"water_surface_transparency": 0.30,
"water_fog_color": "#62529e"
to:
"the_end": {
"fog_identifier" : "minecraft:fog_the_end",
"water_surface_color": "#62529e",
"water_surface_transparency": 0.30,
"water_fog_color": "#62529e"
Please attach the resource pack you're using to this ticket.