simpleExecutes
infix inline fun simpleExecutes(crossinline executor: CommandContext<Source>.() -> Unit): CommandBuilder<Source, Builder, Node>(source)
Deprecated (with error)
The name 'simpleExecutes' has been superseded by 'runs'.
Replace with
runs { executor.invoke() }
Content copied to clipboard
Adds custom execution logic to this command. DEPRECATED Use runs instead.