From b2b4ac358cf8eb7723c5706b518541ce3ee998b4 Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Sun, 19 Nov 2023 17:37:26 -0700 Subject: [PATCH] fix replies to bots being colored wrong --- lib/messages.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/messages.go b/lib/messages.go index 31cb1f0..b93f576 100644 --- a/lib/messages.go +++ b/lib/messages.go @@ -227,7 +227,7 @@ func FormatMessage(options MessageOptions) []string { if options.Reply != nil { nameColor := "cyan+b" - if options.Bot { + if options.Reply.Author.Bot { nameColor = "yellow+b" }