This commit is contained in:
Nikolaj Danger
2020-08-06 15:48:06 +02:00
parent 7712c901fc
commit 592ace1eb4

View File

@ -88,19 +88,19 @@ class MiscCog(commands.Cog):
@commands.command() @commands.command()
async def name(self, ctx): async def name(self, ctx):
await ctx.send(nameGen()) await ctx.send(nameGen())
# Generates a random tavern name # Generates a random tavern name
@commands.command() @commands.command()
async def tavern(self, ctx): async def tavern(self, ctx):
await ctx.send(tavernGen()) await ctx.send(tavernGen())
# Sets the game Gwendolyn's playing # Sets the game Gwendolyn's playing
@commands.command() @commands.command()
async def game(self, ctx, *, content): async def game(self, ctx, *, content):
gamePlaying = cap(content) gamePlaying = cap(content)
game = discord.Game(gamePlaying) game = discord.Game(gamePlaying)
await self.client.change_presence(activity=game) await self.client.change_presence(activity=game)
# Finds a page on the Senkulpa wiki # Finds a page on the Senkulpa wiki
@commands.command(aliases = ["wikia"]) @commands.command(aliases = ["wikia"])
async def wiki(self, ctx, *, content): async def wiki(self, ctx, *, content):