βš™οΈConfiguration

Allows you to modify plants' soils

Enabled by default : βœ… Config file : config/imu/soils.json Log file : logs/imu/soils.log Reloadable (/reload) : βœ…


Explanation

When reloaded the mod show in the logs how many crops were modified in a message like the following one: Successfully reloaded IMU soils and modified soils for X plants If the reload of the mod failed you will see Failed to reload IMU soils: followed by an error that must be reported on Githubarrow-up-right By default the configuration file is an empty json. You can modify soils by adding the block id followed either by an array of block ids or just a block id

You can also use tags in the config.

{
    "crop_id": "block_id",
    "another_crop_id": [
        "block_id",
        "another_block_id"
    ]
}

Example

{
  "minecraft:wheat": "minecraft:sand",
  "minecraft:carrots": [
    "#c:sands",
    "minecraft:farmland"
  ]
}

Here, we replace the soil for the wheat with sand and the one for carrots with any sand and farmland

Warnings

If you modify the soil of a plant that can grow on multiple blocks like cactus or sugar cane, you must specify them in the configuration.

Last updated