From 5c48ad1c067800138c129da203a8fe061de21feb Mon Sep 17 00:00:00 2001 From: vaporvee Date: Thu, 22 Feb 2024 09:51:55 +0100 Subject: [PATCH] more prints --- register_commands.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/register_commands.go b/register_commands.go index 72d147a..5d62c9f 100644 --- a/register_commands.go +++ b/register_commands.go @@ -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) {