Skip to content

v6.0

Latest
Compare
Choose a tag to compare
@juraj-hrivnak juraj-hrivnak released this 18 Oct 12:50
· 3 commits to main since this release

Greenery🌿 changelog

  • Added support for arbitrary block generation.
    • Greenery can now generate non-Greenery blocks in the world and when using bonemeal based on configuration.
    • To add configuration for these blocks create JSON files in the greenery/blocks directory.
    • Properties of this new configuration are:
      • blocks - A list of blocks you want to generate; syntax: <resource_location>:[<meta>]; example: minecraft:cactus
      • worldGen and allowedSoils - The same as Greenery plants.
    • Example configuration file for a cactus:
      {
        "blocks": [
          "minecraft:cactus",
          "minecraft:cactus",
          "minecraft:cactus"
        ],
        "worldGen": [
          "0 | type:dry | 1.0 | 16 | 32"
        ],
        "allowedSoils": [
          "sand"
        ]
      }

Thanks to xkforce for commissioning these features!