adding context menu entry for emoji text
This commit is contained in:
parent
448a31aff8
commit
1700f9c979
1 changed files with 6 additions and 0 deletions
6
bot.py
6
bot.py
|
@ -151,6 +151,12 @@ async def gmroll(ctx,
|
|||
em = discord.Embed(title=rolle, description=rolltotal, colour=0x009933)
|
||||
await ctx.response.send_message(embed=em, ephemeral=True)
|
||||
|
||||
@bot.message_command(name="Emoji Text")
|
||||
@is_admin()
|
||||
async def emoji_text(ctx, message: discord.Message):
|
||||
for x in emojinumbers:
|
||||
await message.add_reaction(x)
|
||||
|
||||
@bot.command(help="veraltet", usage="", hidden=True)
|
||||
@is_member()
|
||||
async def yesno(ctx):
|
||||
|
|
Loading…
Add table
Reference in a new issue