Java源码示例:com.sedmelluq.discord.lavaplayer.tools.PlayerLibrary
示例1public BotinfoCommand() {
this.name = "botinfo";
this.aliases = new String[]{
"about",
"support",
"bi",
};
this.help = "Displays some information about the bot";
// Calls readVersion() every time that we access the prop
// So we store the output ourselves for faster execution
this.lavaplayerVersion = PlayerLibrary.VERSION;
}
@BotCommandHandler
private void version(Message message) {
message.getChannel().sendMessage(PlayerLibrary.VERSION).queue();
}