more prints

This commit is contained in:
2024-02-22 09:51:55 +01:00
parent c23a1c7969
commit 5c48ad1c06

View File

@@ -20,6 +20,7 @@ type Command struct {
var commands []Command = []Command{tag_command, short_get_tag_command, dadjoke_command, ping_command, ask_command, sticky_command, cat_command}
func ready(s *discordgo.Session, event *discordgo.Ready) {
fmt.Print("\nStarting up... (May take longer when Discord rate limits the bot)")
removeOldCommandFromAllGuilds(s)
var existingCommandNames []string
for _, guild := range event.Guilds {
@@ -42,6 +43,7 @@ func ready(s *discordgo.Session, event *discordgo.Ready) {
}
}
}
fmt.Print("\nSuccessfully started the Bot!")
}
func interactionCreate(s *discordgo.Session, i *discordgo.InteractionCreate) {