CommandGroup
abstract class CommandGroup @JvmOverloads constructor(requireJoined: Boolean = true, commands: Array<out Command>, var isInterruptable: Boolean = commands.all { it.isInterruptable }) : Command
A type of command that uses multiple commands, joining all their requirements.
Parameters
requireJoined
whether the requirements of the commands should not intersect.