|
|
@ -41,6 +41,11 @@ class Werewolf(Cog):
|
|
|
|
|
|
|
|
|
|
|
|
@commands.command()
|
|
|
|
@commands.command()
|
|
|
|
async def buildgame(self, ctx: commands.Context):
|
|
|
|
async def buildgame(self, ctx: commands.Context):
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
Create game codes to run custom games.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Pick the roles or randomized roles you want to include in a game
|
|
|
|
|
|
|
|
"""
|
|
|
|
gb = GameBuilder()
|
|
|
|
gb = GameBuilder()
|
|
|
|
code = await gb.build_game(ctx)
|
|
|
|
code = await gb.build_game(ctx)
|
|
|
|
|
|
|
|
|
|
|
@ -92,7 +97,7 @@ class Werewolf(Cog):
|
|
|
|
|
|
|
|
|
|
|
|
@commands.guild_only()
|
|
|
|
@commands.guild_only()
|
|
|
|
@wwset.command(name="category")
|
|
|
|
@wwset.command(name="category")
|
|
|
|
async def wwset_category(self, ctx: commands.Context, category_id=None):
|
|
|
|
async def wwset_category(self, ctx: commands.Context, category_id: int=None):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
Assign the channel category
|
|
|
|
Assign the channel category
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|