diff --git a/uqcsbot/text.py b/uqcsbot/text.py index c62a82c..496fee5 100644 --- a/uqcsbot/text.py +++ b/uqcsbot/text.py @@ -274,5 +274,11 @@ async def zalgo_command(self, interaction: discord.Interaction, text: str): await interaction.response.send_message(self.zalgo_common(text)) + @commands.Cog.listener("on_message") + async def cato(self, message): + if message.author.id == 344362666258726912: + await message.reply("_Ceterum autem censeo praeses capillum esse delendam_.") + + async def setup(bot: commands.Bot): await bot.add_cog(Text(bot))