From e116263a9d8482ede443a873df25f685bc146852 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Fri, 2 Jun 2023 17:07:58 +0500 Subject: [PATCH] Remove redundant guild configuration initializers Signed-off-by: Octol1ttle --- Data/GuildConfiguration.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Data/GuildConfiguration.cs b/Data/GuildConfiguration.cs index 6bdb3a7..5d4a704 100644 --- a/Data/GuildConfiguration.cs +++ b/Data/GuildConfiguration.cs @@ -16,12 +16,12 @@ public class GuildConfiguration { public bool RemoveRolesOnMute { get; set; } public bool ReturnRolesOnRejoin { get; set; } public bool AutoStartEvents { get; set; } - public ulong PublicFeedbackChannel { get; set; } = 0; - public ulong PrivateFeedbackChannel { get; set; } = 0; - public ulong EventNotificationChannel { get; set; } = 0; - public ulong StarterRole { get; set; } = 0; - public ulong MuteRole { get; set; } = 0; - public ulong EventNotificationRole { get; set; } = 0; + public ulong PublicFeedbackChannel { get; set; } + public ulong PrivateFeedbackChannel { get; set; } + public ulong EventNotificationChannel { get; set; } + public ulong StarterRole { get; set; } + public ulong MuteRole { get; set; } + public ulong EventNotificationRole { get; set; } public List EventStartedReceivers { get; set; } = new() { NotificationReceiver.Interested, NotificationReceiver.Role };