use of com.freya02.botcommands.api.application.context.annotations.JDAUserCommand in project BotCommands by freya022.
the class ContextAvatar method execute.
@JDAUserCommand(name = "Get avatar")
public void execute(GuildUserEvent event) {
final User targetUser = event.getTarget();
event.reply(targetUser.getEffectiveAvatarUrl()).queue();
}
Aggregations