map

fun map(condition: BooleanSupplier, vararg commands: Command)

Maps a condition to commands. If the condition returns true, the commands are scheduled. A command can be mapped to multiple conditions.


fun map(condition: BooleanSupplier, runnable: Runnable)

Maps a condition to a runnable. If the condition returns true, a command is scheduled. A command can be mapped to multiple conditions.