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))