mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-20 18:34:56 +00:00
Add animals command
Fix Youtube playback Add Database file
This commit is contained in:
parent
d7953e9808
commit
0c1909807a
12 changed files with 623 additions and 126 deletions
|
@ -1,5 +1,6 @@
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
from lynxie.config import LYNXIE_PREFIX
|
||||
|
||||
|
||||
class Help(commands.Cog):
|
||||
|
@ -19,7 +20,7 @@ class Help(commands.Cog):
|
|||
async def help(self, ctx):
|
||||
embed = discord.Embed(
|
||||
title="Help",
|
||||
description="Lynxie's prefix is `AAAA `",
|
||||
description=f"Lynxie's prefix is `{LYNXIE_PREFIX}`",
|
||||
colour=discord.Colour.orange(),
|
||||
)
|
||||
|
||||
|
@ -30,4 +31,4 @@ class Help(commands.Cog):
|
|||
inline=False,
|
||||
)
|
||||
|
||||
await ctx.send(embed=embed)
|
||||
await ctx.reply(embed=embed)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue