Merge branch 'master' into refactor_inventory

This commit is contained in:
Chris Sexton 2021-02-05 11:35:17 -05:00 committed by GitHub
commit 6669f06271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ type Discord struct {
}
func New(config *config.Config) *Discord {
client, err := discordgo.New("bot " + config.Get("DISCORDBOTTOKEN", ""))
client, err := discordgo.New("Bot " + config.Get("DISCORDBOTTOKEN", ""))
if err != nil {
log.Fatal().Err(err).Msg("Could not connect to Discord")
}