From d9f0f326817152479e740703b80243959e0f8f1a Mon Sep 17 00:00:00 2001 From: Leander Furumo Date: Sun, 26 May 2024 16:53:32 +0200 Subject: [PATCH] add edb comomand --- src/cogs/fun.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/cogs/fun.py b/src/cogs/fun.py index 94749c8..34141c8 100644 --- a/src/cogs/fun.py +++ b/src/cogs/fun.py @@ -1,3 +1,4 @@ +import discord from discord.ext import commands @@ -164,6 +165,20 @@ async def infosec(self, ctx: commands.Context): "https://cdn.discordapp.com/attachments/816357444724457502/890547766181371954/Snapchat-1979489663.mp4" ) + @commands.cooldown(1, 2, commands.BucketType.guild) + @commands.command() + async def edb(self, ctx: commands.Context): + """ + edb er vanskelig + + Parameters + ---------- + ctx (commands.Context): Context object + """ + + f = discord.File("./src/assets/edb.png") + await ctx.reply(file=f) + async def setup(bot: commands.Bot): """