From bd493223ca5656bde00f4aca5979e9e8c31e8968 Mon Sep 17 00:00:00 2001 From: Rudi Date: Fri, 12 Aug 2022 17:04:12 -0400 Subject: [PATCH] Clean up welcome messages --- discordEvents.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/discordEvents.go b/discordEvents.go index 0bedde1..22e79d9 100644 --- a/discordEvents.go +++ b/discordEvents.go @@ -36,8 +36,6 @@ func guildMemberAdd(s *discordgo.Session, m *discordgo.GuildMemberAdd) { config.Probations[m.User.ID] = time.Now() log.LogDebug("Giving user monitor role") s.GuildMemberRoleAdd(config.GuildID, m.User.ID, config.MonitorRole) - log.LogDebug("Sending Monitored message") - s.ChannelMessageSend(config.MonitorChann, fmt.Sprintf("Welcome %+v, you may PM me your verification, or I will ban you in an hour!\nSay \"!rules\" in this channel, without quotes for the rules. You may private/direct message me for verification instructions.\n\nYou will not be able to read/see other channels or users until you verify.", m.User.Mention())) log.LogDebug("Calling saveConfig") saveConfig() }