📽️ Added the !addshow command

This commit is contained in:
NikolajDanger
2021-01-31 20:50:49 +01:00
parent 86cc52ca0d
commit bf64fa3fec
7 changed files with 105 additions and 10 deletions

View File

@ -122,10 +122,15 @@ class MiscCog(commands.Cog):
await ctx.send(content)
#Searches for movie and adds it to Bedre Netflix
@commands.command(aliases = ["rm","addmovie"])
@commands.command(aliases = ["rm","addmovie","am"])
async def requestmovie(self, ctx, *, content):
await self.bedreNetflix.requestMovie(ctx,content)
#Searches for show and adds it to Bedre Netflix
@commands.command(aliases = ["rs","addshow","as"])
async def requestshow(self, ctx, *, content):
await self.bedreNetflix.requestShow(ctx,content)
#Looks up on Wolfram Alpha
@commands.command()
async def wolf(self, ctx, *, content):