Bug Follow-up
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
This commit is contained in:
parent
c9bc0c9c4e
commit
5c4e55c502
28
code/cogs/owner/send.py
Normal file
28
code/cogs/owner/send.py
Normal file
@ -0,0 +1,28 @@
|
||||
from discord.ext import commands
|
||||
|
||||
|
||||
class Send(commands.Cog):
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
@commands.command()
|
||||
@commands.dm_only()
|
||||
@commands.is_owner()
|
||||
async def potoken(self, ctx, user_id: int, message: str):
|
||||
"""Send a message to a user (follow-up on bug reports)"""
|
||||
user = self.bot.get_user(user_id)
|
||||
|
||||
if not user:
|
||||
return await ctx.send("User not found.")
|
||||
|
||||
elif not message:
|
||||
return await ctx.send("No message for user.")
|
||||
|
||||
try:
|
||||
await user.send(message)
|
||||
except Exception as e:
|
||||
await ctx.send("Error sending message to user.")
|
||||
|
||||
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Send(bot))
|
Loading…
x
Reference in New Issue
Block a user