diff --git a/src/NadekoBot/Modules/Games/Games.cs b/src/NadekoBot/Modules/Games/Games.cs index fa8885dce..2ff42cba7 100644 --- a/src/NadekoBot/Modules/Games/Games.cs +++ b/src/NadekoBot/Modules/Games/Games.cs @@ -68,13 +68,14 @@ public partial class Games : NadekoModule imgStream.Position = 0; await ctx.Channel.SendFileAsync(imgStream, - $"girl_{usr}.png", + $"rating.png", Format.Bold($"{ctx.User.Mention} Girl Rating For {usr}"), embed: _eb.Create() .WithOkColor() .AddField("Hot", gr.Hot.ToString("F2"), true) .AddField("Crazy", gr.Crazy.ToString("F2"), true) .AddField("Advice", gr.Advice) + .WithImageUrl($"attachment://rating.png") .Build()); }