From 8f10f37d2e7e2604b5702d2b7e385761bf1fbfe5 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Sun, 20 Nov 2022 15:26:40 +0500 Subject: [PATCH] Fix event notifications not being delivered due to invalid config reference --- Boyfriend/Utils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Boyfriend/Utils.cs b/Boyfriend/Utils.cs index 1c2316d..95538b4 100644 --- a/Boyfriend/Utils.cs +++ b/Boyfriend/Utils.cs @@ -184,6 +184,6 @@ public static class Utils { } public static SocketTextChannel? GetEventNotificationChannel(SocketGuild guild) { - return guild.GetTextChannel(ParseMention(Boyfriend.GetGuildConfig(guild.Id)["EventCreatedChannel"])); + return guild.GetTextChannel(ParseMention(Boyfriend.GetGuildConfig(guild.Id)["EventNotificationChannel"])); } }