Skip to content

Command Config 2.0.0

Tristan Kechlo edited this page Jul 31, 2023 · 1 revision

THIS PAGE ONLY APPLIES TO MODVERSIONS >= 2.0.0

This config-file contains all options to control the commands added by this mod.

Options for the command /superenchant

This category explains the options that used by the command /superenchant

allow_wrong_enchantments

This options controls wether or not it is allowed to combine enchantments which are usually not compatible.
Example: normally it is not possible to combine minecraft:mending and minecraft:infinity on a single bow
- type: boolean
- default: true
- values: true or false

allow_incompatible_enchantments

This option controls wether or not it is allowed to put enchantments on tools which are normaly not compatible.
Example: this allows to put minecraft:infinity on all items
The enchantments might still be useless on most items
- type: boolean
- default: true
- values: true or false

Default configuration

When the config is generated for the first time, it will look like this:

{
    "superenchant": {
        "__comment": "This config is for the /superenchant command",
        "allow_wrong_enchantments": {
            "__comment": "Allow adding enchantments that are not compatible with the tool",
            "value": true
        },
        "allow_incompatible_enchantments": {
            "__comment": "Allow adding enchantments that are not compatible with each other",
            "value": true
        }
    }
}