Skip to content

Commit

Permalink
update shooting meme
Browse files Browse the repository at this point in the history
to nh/eip hosting and also random.choice
  • Loading branch information
eip618 committed Jun 24, 2024
1 parent 9bbb2b7 commit 8f68e80
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cogs/memes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit 8f68e80

Please sign in to comment.