Compare commits

...
3 Commits
Author SHA1 Message Date
Dusty.P 5561865b61 Update command-manager.go 2024-01-06 19:52:14 -09:00
Dustin Pianalto 458250eb80 Update status updater 2021-08-05 23:21:20 -08:00
Dustin Pianalto 5258cf33a7 Test statis update 2021-08-05 22:46:32 -08:00
2 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ import (
"regexp" "regexp"
"strings" "strings"
"github.com/bwmarrin/discordgo" "github.com/dustinpianalto/discordgo"
) )
// AddCommand adds the Command at the address passed in to the Commands array on the CommandManager. // AddCommand adds the Command at the address passed in to the Commands array on the CommandManager.
+2 -6
View File
@@ -38,12 +38,8 @@ func (s *StatusManager) SetInterval(interval string) {
// UpdateStatus updates the status of the bot // UpdateStatus updates the status of the bot
func (s *StatusManager) UpdateStatus(session *discordgo.Session) error { func (s *StatusManager) UpdateStatus(session *discordgo.Session) error {
i := rand.Intn(len(s.Values)) i := rand.Intn(len(s.Values))
usd := discordgo.UpdateStatusData{ err := session.UpdateGameStatus(0, s.Values[i])
Status: s.Values[i], log.Println(err)
AFK: false,
}
err := session.UpdateStatusComplex(usd)
log.Println(err.Error())
return err return err
} }