Uploaded image for project: 'Minecraft (Bedrock codebase)'
  1. Minecraft (Bedrock codebase)
  2. MCPE-65682

[Addons] Custom biomes are broken

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • None
    • 1.20.30.22 Preview, 1.20.30.21 Preview, 1.20.30.20 Preview, 1.20.20.23 Preview, 1.17.20.23 Beta, 1.17.20.22 Beta, 1.16.210.50 Beta, 1.16.100.54 Beta, 1.16.100.52 Beta, 1.16.100.50 Beta, 1.16.20.54 Beta, 1.16.20.52 Beta, 1.16.0.68 Beta, 1.16.0.66 Beta, 1.16.0.64 Beta, 1.16.0.60 Beta, 1.16.0.57 Beta, 1.16.0.58 Beta, 1.16.0.55 Beta, 1.16.0.51 Beta, 1.15.0.56 Beta, 1.14.30 Hotfix, 1.14.60 Hotfix, 1.16.0, 1.16.1, 1.16.10, 1.16.20, 1.16.40 Hotfix, 1.20.12 Hotfix, 1.20.13 Hotfix
    • Community Consensus
    • Multiple
    • 379417

      Custom biomes are broken on android devices (since new Caves&Cliffs world gen - on all devices). Climate, water surface color, water fog color, biome fog color are not working correctly (and you no longer can get access to it with the experimental features).

      Steps to Reproduce:
      1. Create an addon with your custom biomes (biomes must contain different values of climate, fog and water colors);
      2. Add add-on to your world;
      3. Look for custom biomes.

      Observed Results:
      Biome colors (grass, foliage, water, fog) mixes between different custom biomes.

      Expected Results:
      Biome colors (climate etc.) must math the code.

      Broken components:

      1. "minecraft:climate" ([behavior_pack_name]/biomes/[biome_name].json)
      Description: the color of grass or leaves applies the wrong value in the biome or “mixes” with other custom biomes and applies to them. When specifying a value

      "downfall": 0.4, "snow_accumulation": [ 0.0, 0.125 ], "temperature": 1.6
      

      snow instead of rain; grass and foliage will be blue or gray.

      Ash particles.
      Ash particles are identified in the biome with their parent climate value.

      2. "water_surface_color" ([resource_pack_name]/biomes_client.json)
      Description of the problem: often the value of the custom biome takes the default biome value. For example:

       "custom": {
          "water_surface_color": "#ffffff"
       },
      
       "default": {
          "water_surface_color": "#aaaaaa"
       },
      

      The value of "custom" biome in the world:

      "#aaaaaa"
      

      Rarely does the value of a custom biome apply to another custom biome. For example:

      "custom": {
          "water_surface_color": "#ffffff"
       },
      
       "custom2": {
           "water_surface_color": "#aaaaaa"
       },
      

      The value of "custom2" biome in the world:

      "#ffffff"
      

      3. "water_fog_color" ([resource_pack_name]/biomes_client.json)
      Description of the problem: has the same problem as the component "water_surface_color".

      4. "fog_color" ([resource_pack_name]/biomes_client.json)
      Description of the problem: has the same problem as the component "water_surface_color".

            _marcjones_ Marc Jones
            Votes:
            58 Vote for this issue
            Watchers:
            24 Start watching this issue

              Created:
              Updated:
              CHK: