This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
natsuko/cogs/users_utils.py
2023-07-18 18:00:45 +03:00

10 lines
359 B
Python

import discord
from discord.ext.commands import Bot
async def setup(bot: Bot):
@bot.tree.context_menu()
async def show_avatar(inter: discord.Interaction, user: discord.Member):
e = discord.Embed(title="Аватар пользователя")
e.set_image(url=user.display_avatar.url)
await inter.response.send_message(embed=e)