Skip to content

Commit

Permalink
stops bot from deleting all messages in welcome given people cannot t…
Browse files Browse the repository at this point in the history
…ype there anyways
  • Loading branch information
jacobjurek committed Jan 9, 2025
1 parent 7a2118b commit ec71a16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ func LogUserReaction(s *discordgo.Session, m *discordgo.MessageReactionAdd) {
func ChannelMessageFilter(s *discordgo.Session, m *discordgo.MessageCreate) {
var verificationChannel = "1215484329736671282"
var rolesChannel = "1215525696286232626"
var welcomeChannel = "756753996408029254"
//var welcomeChannel = "756753996408029254"

channels := []string{verificationChannel, rolesChannel, welcomeChannel}
channels := []string{verificationChannel, rolesChannel} //welcome channel

for _, channel := range channels {
if m.ChannelID == channel {
Expand Down

0 comments on commit ec71a16

Please sign in to comment.