use of com.freya02.botcommands.api.application.context.annotations.JDAMessageCommand in project BotCommands by freya022.
the class ContextQuote method execute.
@JDAMessageCommand(name = "Quote message")
public void execute(GuildMessageEvent event) {
final Message targetMessage = event.getTarget();
event.reply("> " + targetMessage.getContentRaw()).queue();
}
Aggregations