forgotten commits
This commit is contained in:
parent
266b2fe81f
commit
ec446785ee
4 changed files with 34 additions and 18 deletions
|
|
@ -158,6 +158,7 @@ async def time(ctx):
|
|||
await send_friendly(ctx, game_instances[ctx.channel].remaining_time_string())
|
||||
|
||||
|
||||
# TODO: developer COG
|
||||
# smaller commands
|
||||
|
||||
@bot.command()
|
||||
|
|
@ -193,8 +194,18 @@ async def logout(ctx):
|
|||
@bot.command()
|
||||
@developer
|
||||
async def debug(ctx, *args):
|
||||
print("DEBUG")
|
||||
print(ctx.args)
|
||||
print(ctx.kwargs)
|
||||
embed = discord.Embed(title=f"Village won!", color=0x00ffff)
|
||||
won_emoji = ":trophy:"
|
||||
dead_emoji = ":test:"
|
||||
tab = "\t"
|
||||
space = "<:space:705863033871663185>"
|
||||
embed.add_field(name=str("Name"), value=f"{won_emoji}{space}{dead_emoji}{space}{space}{3}:ballot_box:{tab}role: werewolf{tab}(was: drunk){tab}:point_right: someone", inline=False)
|
||||
await ctx.send(embed=embed)
|
||||
await ctx.send(":test::skull:")
|
||||
|
||||
for emoji in ctx.guild.emojis:
|
||||
await ctx.send(emoji)
|
||||
print(emoji.id)
|
||||
|
||||
|
||||
bot.run(TOKEN)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue