feat(pterodactyl): added sending messages from discord to the server

This commit is contained in:
Seaswimmer 2024-02-29 17:18:03 -05:00
parent a791c27fc3
commit 510f8c788e
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -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):