Skip to content

Commit

Permalink
add edb comomand
Browse files Browse the repository at this point in the history
  • Loading branch information
LBlend committed May 26, 2024
1 parent dfce7d3 commit d9f0f32
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/cogs/fun.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import discord
from discord.ext import commands


Expand Down Expand Up @@ -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):
"""
Expand Down

0 comments on commit d9f0f32

Please sign in to comment.