💌 Started on Love letter

This commit is contained in:
jona605a
2020-08-28 23:11:19 +02:00
parent f9cfe77d86
commit 646749acb1
5 changed files with 159 additions and 2 deletions

View File

@ -100,5 +100,10 @@ class GamesCog(commands.Cog):
async def hexCommand(self, ctx, *, content = ""):
await self.client.gameLoops.runHex(ctx.message.channel,content,"#"+str(ctx.message.author.id))
# Runs a game of Love Letter
@commands.command(aliases = ["ll"])
async def loveletter(self, ctx, *, content = ""):
await self.client.gameLoops.runLoveletter(ctx.message.channel,content,"#"+str(ctx.message.author.id))
def setup(client):
client.add_cog(GamesCog(client))