send message when user leaves too

This commit is contained in:
stryan 2021-01-03 20:52:30 -05:00
parent b782efdf04
commit 41e864a0f3
1 changed files with 1 additions and 0 deletions

View File

@ -178,6 +178,7 @@ func voiceUpdate(s *discordgo.Session, event *discordgo.VoiceStateUpdate) {
}
delete(Bridge.DiscordUsers, u.Username)
log.Println("user left watched discord channel")
Bridge.CurrentChannel.Send(fmt.Sprintf("%v has left Discord channel\n", u.Username), false)
Bridge.DiscordUserCount = count
}
}