Add a super sneaky dev debug messaging command

This commit is contained in:
Ske 2018-12-18 18:17:09 +01:00
parent 3382ca2862
commit ef7fc4397a
2 changed files with 17 additions and 0 deletions

View File

@ -181,6 +181,8 @@ async def command_root(ctx: CommandContext):
await import_commands.import_root(ctx)
elif ctx.match("help"):
await misc_commands.help_root(ctx)
elif ctx.match("tell"):
await misc_commands.tell(ctx)
else:
raise CommandError("Unknown command {}. For a list of commands, type `pk;help commands`.".format(ctx.pop_str()))

View File

@ -90,3 +90,18 @@ async def export(ctx: CommandContext):
f = io.BytesIO(json.dumps(data).encode("utf-8"))
await ctx.message.channel.send(content="Here you go!", file=discord.File(fp=f, filename="system.json"))
async def tell(ctx: CommandContext):
# Dev command only
# This is used to tell members of servers I'm not in when something is broken so they can contact me with debug info
if ctx.message.author.id != 102083498529026048:
# Just silently fail, not really a public use command
return
channel = ctx.pop_str()
message = ctx.remaining()
# lol error handling
await ctx.client.get_channel(int(channel)).send(content="[dev message] " + message)
await ctx.reply_ok("Sent!")