diff --git a/src/main/java/wtf/beatrice/hidekobot/slashcommands/AvatarCommand.java b/src/main/java/wtf/beatrice/hidekobot/slashcommands/AvatarCommand.java index b937530..f3a4eed 100644 --- a/src/main/java/wtf/beatrice/hidekobot/slashcommands/AvatarCommand.java +++ b/src/main/java/wtf/beatrice/hidekobot/slashcommands/AvatarCommand.java @@ -54,8 +54,9 @@ public class AvatarCommand // embed processing { embedBuilder.setColor(Color.PINK); - embedBuilder.setAuthor(event.getUser().getAsTag(), null, event.getUser().getEffectiveAvatarUrl()); - embedBuilder.setTitle(user.getAsTag() + "'s profile picture"); + embedBuilder.setTitle("Profile picture"); + + embedBuilder.addField("User", "<@" + user.getId() + ">", false); embedBuilder.addField("Current resolution", resolution + " × " + resolution, false);