From 8f68e802335bd62bd65254db2719e1145aed5897 Mon Sep 17 00:00:00 2001 From: eip <36315290+eip618@users.noreply.github.com> Date: Tue, 25 Jun 2024 09:47:14 +1000 Subject: [PATCH] update shooting meme to nh/eip hosting and also random.choice --- cogs/memes.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cogs/memes.py b/cogs/memes.py index 324b255f..4f3ab9f9 100644 --- a/cogs/memes.py +++ b/cogs/memes.py @@ -765,11 +765,13 @@ async def b(self, ctx: KurisuContext): "https://nintendohomebrew.com/assets/img/nhmemes/b15.png"] await self._meme(ctx, "", image_link=random.choice(b_list)) - @commands.command(hidden=True, aliases=['america']) + @commands.command(hidden=True, aliases=['america']) @commands.cooldown(rate=1, per=300.0, type=commands.BucketType.channel) async def shootings(self, ctx: KurisuContext): - """a solid 0 days since the last one""" - await ctx.send("https://i.imgur.com/Qzz4WZx.png") + """so we don't have to find it every time""" + shooting_list = ["https://nintendohomebrew.com/assets/img/nhmemes/shooting1.png", + "https://nintendohomebrew.com/assets/img/nhmemes/shooting2.jpg"] + await self._meme(ctx, "", image_link=random.choice(shooting_list)) async def setup(bot): await bot.add_cog(Memes(bot))