mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-06-03 09:13:13 +00:00
Add Images command
Clean up Animals command
This commit is contained in:
parent
68d638c7ee
commit
4e685393de
12 changed files with 283 additions and 27 deletions
|
@ -3,19 +3,18 @@ import asyncio
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
|
||||
from lynxie.config import DISCORD_TOKEN, LYNXIE_PREFIX, LYNXIE_DB
|
||||
from lynxie.commands import Help, Ping, Hello, Music, Animals
|
||||
from lynxie.config import DISCORD_TOKEN, LYNXIE_PREFIX
|
||||
from lynxie.commands import Help, Ping, Hello, Music, Animals, Img
|
||||
from lynxie.database import CommandHistory, Database
|
||||
|
||||
|
||||
db = Database()
|
||||
lynxie = commands.Bot(
|
||||
intents=discord.Intents.all(),
|
||||
command_prefix=LYNXIE_PREFIX,
|
||||
help_command=None,
|
||||
)
|
||||
|
||||
db = Database()
|
||||
|
||||
|
||||
@lynxie.event
|
||||
async def on_ready():
|
||||
|
@ -56,8 +55,6 @@ async def on_message_edit(before, after):
|
|||
f'"{before.content}" --> "{after.content}"'
|
||||
)
|
||||
|
||||
# await lynxie.process_commands(after)
|
||||
|
||||
|
||||
async def run():
|
||||
async with lynxie:
|
||||
|
@ -66,6 +63,7 @@ async def run():
|
|||
await lynxie.add_cog(Hello(lynxie))
|
||||
await lynxie.add_cog(Music(lynxie))
|
||||
await lynxie.add_cog(Animals(lynxie))
|
||||
await lynxie.add_cog(Img(lynxie))
|
||||
await lynxie.start(DISCORD_TOKEN)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue