Open YonLiud opened 2 years ago
After coding for a bit I have noticed that authentication no longer requires adding the prefix "Bot +" before the token
"Bot +"
- dg, err := discordgo.New("Bot " + token) + dg, err := discordgo.New(token)
What library version are you on? I can't seem to repdoduce the behaviour.
What library version are you on? I can't seem to reproduce the behavior.
v0.25.0 as far as I am aware
After coding for a bit I have noticed that authentication no longer requires adding the prefix
"Bot +"
before the token