From 8fab315cc665f0610de614c3d3e5bbbbd8289ff7 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Thu, 11 Oct 2018 11:41:02 +0200 Subject: [PATCH] Use the channel with Welcome new user message as birthday message channel --- DeukBot4/Database/BirthdayHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeukBot4/Database/BirthdayHandler.cs b/DeukBot4/Database/BirthdayHandler.cs index 2e16dc7..bab5772 100644 --- a/DeukBot4/Database/BirthdayHandler.cs +++ b/DeukBot4/Database/BirthdayHandler.cs @@ -139,7 +139,7 @@ namespace DeukBot4.Database eb.Description = $"It's <@!{guildUser.Id}>'s {age}th birthday!! Have a good one!"; eb.ThumbnailUrl = guildUser.GetAvatarUrl(); - guild.DefaultChannel.SendMessageAsync("", embed: eb.Build()); + guild.SystemChannel.SendMessageAsync("", embed: eb.Build()); } } }