From 756aaf237946f063e9a5b36ce8f5cb876b53f4e8 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Fri, 9 Sep 2022 10:21:34 -0500 Subject: [PATCH] Add more default emojis to the reaction handler --- bot/config.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bot/config.go b/bot/config.go index b22da79..4ccadf5 100644 --- a/bot/config.go +++ b/bot/config.go @@ -5,7 +5,10 @@ const ( ) var ( - defaultReactions []string = []string{"👍", "🌶️", "🤣", "😂", "🍆", "🍑", "❤️", "💦", "😍", "💩", "🔥", "🍒", "🎉", "🥳", "🎊"} + defaultReactions []string = []string{ + "👍", "🌶️", "🤣", "😂", "🍆", "🍑", "❤️", "💦", "😍", "💩", + "🔥", "🍒", "🎉", "🥳", "🎊", "📉", "📈", "💀", "☠️", + } ) type (