From 0551cdadfbf8c30d9b35732cd4abb5516298ea2f Mon Sep 17 00:00:00 2001 From: fzorb Date: Fri, 4 Oct 2024 11:35:37 +0300 Subject: [PATCH] show quote category in showquote --- systems/quote.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/quote.rb b/systems/quote.rb index c1cdf69..b9095ed 100644 --- a/systems/quote.rb +++ b/systems/quote.rb @@ -43,7 +43,7 @@ module QuoteSystem event.channel.send_message("Quote doesn't exist") return end - event.channel.send_message("##{quote[0][0]}: #{quote[0][3]}") + event.channel.send_message("##{quote[0][0]} <#{quote[0][2]}>: #{quote[0][3]}") nil end end \ No newline at end of file