This commit is contained in:
NikolajDanger
2020-08-13 17:09:26 +02:00
parent b82d233faf
commit 4ee96cd3b5
10 changed files with 14 additions and 19 deletions

View File

@ -8,7 +8,7 @@ class LookupCog(commands.Cog):
def __init__(self,client):
"""Runs lookup commands."""
self.client = client
# Looks up a spell
@commands.command()
async def spell(self, ctx, *, content):
@ -18,7 +18,7 @@ class LookupCog(commands.Cog):
await ctx.send(spell[2000:])
else:
await ctx.send(spell)
# Looks up a monster
@commands.command()
async def monster(self, ctx, *, content):