Customization

Looks like you want to change something in commands that are present in this mod, maybe it's a conflict with another same mod or you want to disable something manually. No problem, I will explain it to you.

To change command you can use commandCustomization from General config. You need to add an entry with command's original literal name and some of these options: literal, permissionLevel, aliases or disabled.

You can check original command literal using /st command

Your config section should look like that (example):

commandCustomization {
    // command literal
    "rename" {
        // fully disables this command
        disabled=true
    }
    "st" {
        // allows you to access this command using /myexample
        aliases=[
            myexample
        ]
        // changes base literal (useful on command conflict)
        literal=stbox
    }
}

You are required to restart the server to apply all command changes, currently it's the only one option because commands are registered on server start!

Last updated