icon |
---|
ban |
You can disable custom blocks in some worlds, this will stop the plugin from generating custom region files.
By default the custom blocks are enabled in all worlds.
{% code title="config.yml" %}
blocks:
worlds:
- "*" # Enable in all worlds
- "world_*" # Enable in worlds starting by `world_`
- "*_nether" # Enable in worlds ending by `_nether`
- "!my_custom_world" # Disable in world named `my_custom_world`
{% endcode %}
{% code title="config.yml" %}
blocks:
worlds:
- "*"
{% endcode %}
{% code title="config.yml" %}
blocks:
worlds:
- "*"
- "!*_nether"
{% endcode %}