From 5db6a70961b41600b530c4e80e495f56cc1bfa9d Mon Sep 17 00:00:00 2001 From: Kristian _server Date: Wed, 7 Feb 2024 19:44:54 +0100 Subject: [PATCH] Little wins --- bot/chat.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/chat.go b/bot/chat.go index 9ca6ef8..be78006 100644 --- a/bot/chat.go +++ b/bot/chat.go @@ -120,7 +120,7 @@ func chatGPT(session *discordgo.Session, channelID string, message string, conve currentPage := 0 totalPages := len(pages) embed := &discordgo.MessageEmbed{ - Title: fmt.Sprintf("BitBot's Response (Page %d of %d)", currentPage+1, totalPages), + Title: fmt.Sprintf("Page %d of %d", currentPage+1, totalPages), Description: pages[currentPage], Color: 0x00ff00, // Green color } @@ -171,7 +171,7 @@ func reactionHandler(session *discordgo.Session, r *discordgo.MessageReactionAdd // Update the message with the new page updatedEmbed := &discordgo.MessageEmbed{ - Title: fmt.Sprintf("BitBot's Response (Page %d of %d)", currentPage+1, len(pages)), + Title: fmt.Sprintf("Page %d of %d", currentPage+1, len(pages)), Description: pages[currentPage], Color: 0x00ff00, // Green color }