Removed everything currently in development.
This commit is contained in:
@ -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))
|
Reference in New Issue
Block a user