Removed everything currently in development.

This commit is contained in:
NikolajDanger
2021-03-28 15:44:19 +02:00
parent 019d7f05c8
commit 0ca0dcfb30
6 changed files with 0 additions and 486 deletions

View File

@ -88,11 +88,6 @@ class GamesCog(commands.Cog):
async def fourinarow(self, ctx, *, content = ""):
await self.bot.gameLoops.fiar(ctx.message.channel,content,"#"+str(ctx.message.author.id))
# Runs a game of Monopoly
@commands.command(aliases = ["m","mon","mono"])
async def monopoly(self, ctx, *, content = ""):
await self.bot.gameLoops.runMonopoly(ctx.message.channel,content,"#"+str(ctx.message.author.id))
# Runs a game of Hangman
@commands.command(aliases = ["hm"])
async def hangman(self, ctx, *, content = "start"):
@ -103,15 +98,5 @@ class GamesCog(commands.Cog):
async def hexCommand(self, ctx, *, content = ""):
await self.bot.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.bot.gameLoops.runLoveletter(ctx.message.channel,content,"#"+str(ctx.message.author.id),ctx.message.author)
# Runs a game of Werewolf
@commands.command()
async def werewolf(self,ctx, *,content = "start"):
await self.bot.werewolf.parseWerewolf(ctx,content.lower())
def setup(bot):
bot.add_cog(GamesCog(bot))