From afb14f53f4dc43163fe5d8528d94eadaf54fb34d Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Mon, 11 Mar 2024 01:44:12 -0400 Subject: Add skeleton of starboard cog; improve menu handling We were previously not escaping mentions right in `qotd list` and `qotd suggest`. I think everyone and here could have maybe got through? Not sure about the defaults there. Also improved the handling in Markov where previously we'd been 1. allowing mentions but 2. editing the message from a dummy one so they didn't ping, which I think was out of some idea of preserving the exact text of an exclusion but it seems inelegant. --- starboard/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 starboard/__init__.py (limited to 'starboard/__init__.py') diff --git a/starboard/__init__.py b/starboard/__init__.py new file mode 100644 index 0000000..eeb3d75 --- /dev/null +++ b/starboard/__init__.py @@ -0,0 +1,5 @@ +from .starboard import Starboard + + +async def setup(bot): + await bot.add_cog(Starboard(bot)) -- cgit v1.2.3-57-g22cb