@EventHandler(priority = EventPriority.HIGH)
public void onPlayerJoin(PlayerJoinEvent event) {
if (!config.listOnJoin) return;
Player player = event.getPlayer();
CommandBook.callEvent(new OnlineListSendEvent(player));
sendOnlineList(
CommandBook.server().getOnlinePlayers(), player);
}