Skip to content

Commit

Permalink
Made avatar command more enthusiastic when providing self-image
Browse files Browse the repository at this point in the history
  • Loading branch information
VelvetToroyashi committed Jan 21, 2021
1 parent b435fe5 commit 347347e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Silk.Core/Commands/General/AvatarCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public async Task Avatar(CommandContext ctx)
var builder = new DiscordMessageBuilder();
builder.WithReply(ctx.Message.Id);
builder.WithEmbed(DefaultAvatarEmbed(ctx).WithAuthor(ctx.User.Username, iconUrl: ctx.User.AvatarUrl)
.WithDescription($"Your Avatar")
.WithTitle($"Your Avatar!")
.WithImageUrl(AvatarImageResizedUrl(ctx.User.AvatarUrl)));
await ctx.RespondAsync(builder);
}
Expand Down

0 comments on commit 347347e

Please sign in to comment.