Button clicks can be handled using the onClick(Consumer<Click>) method:
Button button = Button.of(ItemType.DIAMOND)
.onClick(click -> {
Audience clicker = click.clicker(); // who clicked
ClickType type = click.type(); // click type (left, right, etc)
if (clicker instanceof Player player) {
// check if the clicker is a player
}
});
val button = Button.of(ItemType.DIAMOND)
.onClick { click ->
val clicker = click.clicker() // who clicked
val type = click.type() // click type (left, right, etc)
if (clicker is Player) {
// check if the clicker is a player
}
}