feat(pterodactyl): added sending messages from discord to the server
This commit is contained in:
parent
a791c27fc3
commit
510f8c788e
1 changed files with 2 additions and 0 deletions
|
@ -161,6 +161,8 @@ class Pterodactyl(commands.Cog):
|
|||
if message.channel.id == await self.config.console_channel() and message.author.id != self.bot.user.id:
|
||||
await message.channel.send(f"Received message from {message.author.id}: {message.content}")
|
||||
await self.websocket.send(json.dumps({"event": "send command", "args": [message.content]}))
|
||||
if message.channel.id == await self.config.chat_channel() and message.author.id != self.bot.user.id:
|
||||
await self.websocket.send(json.dumps({"event": "send command", "args": [f"""tellraw @a ["",{"text":"{message.author.display_name} (DISCORD): ","color":"blue"},{"text":"{message.content}","color":"white"}]"""]}))
|
||||
|
||||
@commands.group(autohelp = True, name = "pterodactyl", aliases = ["ptero"])
|
||||
async def pterodactyl(self, ctx: commands.Context):
|
||||
|
|
Loading…
Reference in a new issue