diff --git a/src/NadekoBot/Modules/Utility/Giveaway/GiveawayService.cs b/src/NadekoBot/Modules/Utility/Giveaway/GiveawayService.cs index b8ad84835..d6131bb8d 100644 --- a/src/NadekoBot/Modules/Utility/Giveaway/GiveawayService.cs +++ b/src/NadekoBot/Modules/Utility/Giveaway/GiveawayService.cs @@ -341,6 +341,9 @@ public sealed class GiveawayService : INService, IReadyExecutor try { await msg.ModifyAsync(x => x.Embed = eb.Build()); + + if (winner is not null) + await _sender.Response(ch).Message(msg).Text($"🎉 <@{winner.UserId}>").SendAsync(); } catch {